/* Main Styles for movuva-sanuge.sbs */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  --mint-green: #3FBF7F;
  --purple: #8B5FBF;
  --light-blue: #EAF9F1;
  --graphite: #1D1E22;
  --mandarin: #FF9051;
  --white: #FFFFFF;
  --gray: #f5f5f5;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--graphite);
  background-color: var(--light-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--mint-green);
  border-radius: 2px;
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  color: var(--mint-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--purple);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--mandarin);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(255, 144, 81, 0.3);
}

.btn:hover {
  background: var(--mint-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(63, 191, 127, 0.3);
  color: white;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--mint-green);
  font-size: 1.8rem;
}

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--graphite);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--mint-green);
  transition: var(--transition);
}

nav ul li a:hover:after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--mint-green);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image:hover img {
  transform: rotate(0);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.about:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
  transform: translateY(-100%);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--mint-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.benefit-icon svg {
  fill: white;
  width: 30px;
  height: 30px;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background-color: var(--white);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex-basis: calc(33.333% - 30px);
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--purple);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 25px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: var(--purple);
  opacity: 0.3;
}

/* Products Section */
.products {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.25rem;
  color: var(--mint-green);
  font-weight: 700;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: var(--light-blue);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  color: var(--mint-green);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-name {
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--purple);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

/* Order Form */
.order {
  padding: 80px 0;
  background-color: var(--white);
}

.form-container {
  background: var(--light-blue);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--mint-green);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.form-submit {
  margin-top: 20px;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.contact-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  min-width: 30px;
  height: 30px;
  background: var(--mint-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
}

.contact-map {
  flex: 1;
}

.contact-map img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
}

.cookie-actions {
  flex-shrink: 0;
}

/* Footer */
footer {
  background-color: var(--graphite);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--mint-green);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-blue);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--mint-green);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-content,
  .about-content,
  .contact-content {
    flex-direction: column;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  
  .step:not(:last-child):after {
    display: none;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .step {
    flex-basis: 100%;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-image,
  .about-image {
    margin-top: 30px;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideIn 0.5s ease forwards;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  display: inline-block;
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.accent-text {
  color: var(--mint-green);
}

/* Policy Pages Styling */
.policy-page {
  padding: 120px 0 60px;
  background-color: var(--light-blue);
  min-height: 100vh;
}

.policy-content {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.policy-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--mint-green), var(--purple));
  border-radius: 10px 0 0 10px;
}

.policy-content h1 {
  color: var(--mint-green);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--mint-green);
  padding-bottom: 15px;
  font-size: 2.2rem;
  text-align: center;
}

.policy-content h2 {
  color: var(--purple);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid var(--mint-green);
}

.policy-content h2:after {
  display: none;
}

.policy-content h3 {
  font-size: 1.2rem;
  color: var(--graphite);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-content p, 
.policy-content ul, 
.policy-content ol {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

.policy-content ul, 
.policy-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-content ul li, 
.policy-content ol li {
  margin-bottom: 8px;
  position: relative;
}

.policy-content a {
  color: var(--mint-green);
  text-decoration: none;
  border-bottom: 1px dotted var(--mint-green);
  transition: var(--transition);
  font-weight: 500;
}

.policy-content a:hover {
  color: var(--purple);
  border-bottom: 1px solid var(--purple);
}

@media (max-width: 768px) {
  .policy-page {
    padding: 100px 0 40px;
  }
  
  .policy-content {
    padding: 25px 20px;
    margin: 0 15px;
  }
  
  .policy-content h1 {
    font-size: 1.8rem;
  }
  
  .policy-content h2 {
    font-size: 1.3rem;
  }
} 