/* Base Styles */
:root {
  --primary: #ff6600;
  --primary-light: rgba(255, 102, 0, 0.1);
  --primary-dark: #e65c00;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  line-height: 1.5;
  background-color: var(--background);
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.min-h-screen {
  min-height: 100vh;
}

/* Animated Background Elements */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.animated-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
  animation: float 15s infinite ease-in-out;
}

.shape1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary);
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.shape2 {
  width: 300px;
  height: 300px;
  background-color: #3498db;
  bottom: 20%;
  right: -50px;
  animation-delay: 2s;
}

.shape3 {
  width: 250px;
  height: 250px;
  background-color: var(--primary);
  top: 50%;
  right: 15%;
  animation-delay: 4s;
}

.shape4 {
  width: 350px;
  height: 350px;
  background-color: #3498db;
  bottom: 10%;
  left: 20%;
  animation-delay: 6s;
}

.shape5 {
  width: 280px;
  height: 280px;
  background-color: var(--primary);
  top: 30%;
  right: 30%;
  animation-delay: 8s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-40px) translateX(20px);
  }
  50% {
    transform: translateY(0) translateX(40px);
  }
  75% {
    transform: translateY(40px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Add new particle background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(20px);
  }
}

/* Add animated gradient background */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.03), rgba(52, 152, 219, 0.03), rgba(255, 102, 0, 0.03));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Typography */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

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

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn i {
  margin-left: 0.5rem;
}

/* Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.main-nav {
  display: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.contact-btn {
  display: none;
}

.contact-icon-btn {
  margin-right: 0.5rem;
  margin-left: 0;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: transparent;
  cursor: pointer;
}

/* Brand Marquee */
.brand-marquee-container {
  padding: 2rem 0;
  background-color: rgba(241, 245, 249, 0.3);
  overflow: hidden;
  position: relative;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
}

.brand-marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.brand-logo {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-logo img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("img/bg.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 6rem 2rem;
}

.hero-content {
  max-width: 32rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  position: relative;
  border: 1px solid rgba(255, 102, 0, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.card-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card-text {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-btn {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-btn {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-image-container {
  position: relative;
}

.about-circle-1 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
}

.about-circle-2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background-color: rgba(255, 102, 0, 0.2);
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
}

.about-btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Why Choose Us */
.why-us-section {
  padding: 4rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-us-card {
  background: linear-gradient(to bottom right, var(--background), var(--muted));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.why-us-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-us-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-us-icon {
  color: var(--primary);
  font-size: 2rem;
}

.why-us-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-us-text {
  color: var(--muted-foreground);
}

/* Process Section */
.process-section {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline-line {
  display: none;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 1rem 0;
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-circle {
  transform: scale(1.1);
}

.timeline-content {
  width: 100%;
  text-align: center;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 1.125rem;
}

.timeline-empty {
  display: none;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
}

.tabs {
  margin-top: 2rem;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 0.75rem;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

/* Product Image Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  cursor: default;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.3s ease;
  cursor: grab;
}

.lightbox-image.dragging {
  cursor: grabbing;
  transition: none;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.lightbox-zoom-controls {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.zoom-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.2s;
}

.zoom-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Product Image Wrapper and Warranty Tag */
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.warranty-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 1rem;
  cursor: zoom-in;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.product-description {
  margin-bottom: 1rem;
}

.product-features {
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-features li i {
  color: var(--primary);
  margin-right: 0.5rem;
  font-size: 1rem;
}

.product-btn {
  width: 100%;
}

.products-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.empty-tab-content {
  text-align: center;
  padding: 3rem 0;
  max-width: 24rem;
  margin: 0 auto;
}

.empty-tab-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.empty-tab-text {
  color: var(--muted-foreground);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-text {
  font-size: 1.125rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-item-title {
  font-weight: 500;
}

.contact-item-text {
  color: var(--muted-foreground);
}

.contact-cta {
  align-self: flex-start;
  margin-top: 1rem;
}

.map-container {
  height: 25rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder p {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background-color: rgba(241, 245, 249, 0.3);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo i {
  color: var(--primary);
}

.footer-text {
  color: var(--muted-foreground);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.footer-contact-item i {
  color: var(--primary);
  width: 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

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

/* Media Queries */
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .main-nav {
    display: flex;
    gap: 1.5rem;
  }

  .contact-btn {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-container {
    padding: 8rem 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 0.25rem;
    background-color: rgba(255, 102, 0, 0.2);
  }

  .timeline-item {
    flex-direction: row;
  }

  .timeline-content-left {
    width: 50%;
    padding-right: 3rem;
    text-align: right;
  }

  .timeline-content-right {
    width: 50%;
    padding-left: 3rem;
    text-align: left;
  }

  .timeline-empty {
    display: block;
    width: 50%;
  }

  .tabs-list {
    grid-template-columns: repeat(5, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 10rem 2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

/* Add wave effect at the bottom of sections */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.wave-divider .shape-fill {
  fill: #ffffff;
}

.wave-divider-alt .shape-fill {
  fill: rgba(241, 245, 249, 0.5);
}

/* Position relative for sections that will have wave dividers */
.hero-section,
.services-section,
.about-section,
.why-us-section,
.process-section,
.products-section {
  position: relative;
}

