@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --secondary-color: #10b981;
  --dark-color: #111827;
  --dark-light: #1f2937;
  --gray-color: #6b7280;
  --light-gray-color: #d1d5db;
  --white-color: #ffffff;
  --bg-color: #e6dcd4;
  --font-family: "Poppins", sans-serif;
  --container-width: 1200px;
  --border-radius: 12px;
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--dark-color);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  color: var(--gray-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.btn-secondary:hover {
  background-color: #059669;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.top-action-bar {
  background-color: #1a2c38;
  background: url("../images/header.webp") no-repeat center / cover;
  padding: 120px 0;
  z-index: 1000;
  text-align: center;
}

.top-action-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .top-action-bar-content {
    flex-direction: column;
    gap: 400px;
  }

  .top-action-bar {
    height: 100vh;
    background: url("../images/header.webp") no-repeat top;
    background-size: 240% auto;
  }
}

.top-action-bar p {
  color: var(--dark-color);
  margin: 0;
  font-weight: 500;
}

.top-action-bar .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.main-header {
  background-color: var(--white-color);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-color);
}

.logo a span {
  color: var(--primary-color);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 24px;
}

.burger-menu {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--dark-color);
}

.hero {
  background: linear-gradient(
    45deg,
    var(--bg-color) 55%,
    var(--primary-color) 55%
  );
  padding: 100px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-text h1 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(3deg);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.05);
}

.categories-section {
  text-align: center;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 10px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.category-card h3 {
  margin-bottom: 10px;
}

.product-slider-section {
  background-color: var(--dark-light);
  color: var(--white-color);
  padding: 80px 0;
  overflow: hidden;
}

.product-slider-section .section-title h2,
.product-slider-section .section-title p {
  color: var(--white-color);
}

.products-flex {
  display: flex;
}

.swiper-slide .product-card {
  background-color: var(--dark-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  color: var(--white-color);
  text-align: left;
}

.product-card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card-content {
  padding: 25px;
}

.product-card-content h4 {
  color: var(--white-color);
  margin-bottom: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.brands-section .brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.brand-logo {
  width: 150px;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(100%);
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.features-section {
  background-color: var(--bg-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white-color);
  padding: 35px 30px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  border-color: var(--primary-color);
}

.feature-card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.best-products-section {
  background-color: var(--white-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-item-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
}

.product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #e5e7eb;
}

.product-item-card .product-content {
  padding: 25px;
}

.product-item-card .price {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.journey-section {
  background-color: #111827;
  position: relative;
  color: var(--white-color);
  text-align: center;
}

.journey-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.8);
}

.journey-content {
  position: relative;
  z-index: 2;
}

.journey-content h2,
.journey-content p {
  color: var(--white-color);
}

.main-footer {
  background-color: var(--dark-color);
  color: var(--light-gray-color);
  padding-top: 80px;
  font-size: 0.9rem;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.footer-wave .shape-fill {
  fill: var(--bg-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
}

.footer-column h4 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-column p {
  color: var(--light-gray-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: var(--light-gray-color);
}

.footer-column ul a:hover {
  color: var(--white-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--light-gray-color);
  font-size: 1.5rem;
}

.social-icons a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid var(--dark-light);
  padding: 20px 0;
  text-align: center;
}

.about-hero {
  background-color: var(--dark-light);
  color: var(--white-color);
  text-align: center;
}

.about-hero h1,
.about-hero p {
  color: var(--white-color);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-mission-grid img {
  border-radius: var(--border-radius);
}

.timeline-section {
  background-color: var(--white-color);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-container.left {
  left: 0;
}

.timeline-container.right {
  left: 50%;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container.right::after {
  left: -16px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--white-color);
  border-radius: var(--border-radius);
  text-align: center;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 5px solid var(--bg-color);
}

.team-member .role {
  color: var(--primary-color);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.value-card .icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.app-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.app-phone-mockup {
  position: relative;
  text-align: center;
}

.app-phone-mockup img {
  max-width: 350px;
  margin: 0 auto;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
}

.app-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.app-cta-buttons a {
  display: flex;
  align-items: center;
  background: var(--dark-color);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.app-cta-buttons a:hover {
  background: var(--dark-light);
  transform: translateY(-3px);
}

.app-cta-buttons i {
  font-size: 2.5rem;
  margin-right: 15px;
}

.app-cta-buttons .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-text span:first-child {
  font-size: 0.8rem;
}

.btn-text span:last-child {
  font-size: 1.2rem;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-item-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-item-card .product-content {
  padding: 20px;
}

.product-item-card .price {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--bg-color);
}

.comparison-table th {
  background-color: var(--dark-light);
  color: var(--white-color);
}

.comparison-table td .bx-check-circle {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.comparison-table td .bx-x-circle {
  color: #ef4444;
  font-size: 1.5rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  background: var(--white-color);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray-color);
  border-radius: 8px;
  font-family: var(--font-family);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.company-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.company-info .info-item .icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.thanks-page {
  text-align: center;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thanks-content .icon {
  font-size: 6rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
}

.legal-content h1 {
  margin-bottom: 20px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.white {
  background-color: var(--white-color);
}

.map {
  margin-top: 30px;
  border-radius: var(--border-radius);
}

.exclusive {
  margin-bottom: 20px;
  cursor: default;
}

.mobile-text {
  display: none;
}

@media (max-width: 992px) {
  .hero {
    background: var(--primary-color);
    padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1,
  .hero-text .subtitle {
    color: var(--white-color);
  }

  .hero-image {
    order: -1;
    margin-bottom: 40px;
  }

  .hero-image img {
    transform: rotate(0);
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-grid img {
    order: -1;
    margin-bottom: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .app-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
  }

  .main-nav ul a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-color);
  }

  .main-nav a::after {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
  }

  .timeline-container.left,
  .timeline-container.right {
    left: 0%;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-container::after,
  .timeline-container.right::after {
    left: 15px;
  }

  .product-grid,
  .team-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .app-phone-mockup img {
    max-width: 100%;
  }

  .info-item {
    flex-direction: column;
  }

  .info-item a {
    font-size: 0.9rem;
  }

  .legal-content {
    padding: 40px 20px;
  }

  .legal-content h1 {
    font-size: 1.8rem;
  }

  .legal-content a {
    font-size: 0.9rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .top-action-bar {
    padding: 50px 0;
  }
}

@media (max-width: 468px) {
  .comparison-table {
    display: none;
  }

  .mobile-text {
    display: block;
  }

  .product-content h3 {
    font-size: 1.4rem;
  }

  .contact-form h3 {
    font-size: 1.6rem;
  }

  .contact-wrapper {
    padding: 50px 20px;
  }
}
