/* Main CSS for cuhusa-sobike website */

:root {
  /* Color palette */
  --electric-lime: #CCFF00;
  --obsidian-black: #0B0C10;
  --neon-aqua: #00FFFF;
  --blush-coral: #FF6F61;
  --mist-white: #F4F4F4;
  
  /* Font families */
  --main-font: 'Poppins', 'Ubuntu', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--main-font);
  background-color: var(--obsidian-black);
  color: var(--mist-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header styles */
header {
  background-color: var(--obsidian-black);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 100%;
}

@media (max-width: 768px) {
  header {
    position: relative;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links li {
  margin-left: 20px;
  margin-bottom: 5px;
}

.nav-links a {
  color: var(--mist-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--electric-lime);
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  
  .nav-links {
    margin-top: 15px;
    justify-content: center;
    padding: 0;
  }
  
  .nav-links li {
    margin: 5px 10px;
  }
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--blush-coral), var(--neon-aqua));
  color: var(--obsidian-black);
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover, .btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--electric-lime);
}

/* Hero section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(11, 12, 16, 0.8), rgba(11, 12, 16, 0.8)), url('../img/mGZrI0.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--electric-lime);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* About section */
.about {
  background-color: rgba(204, 255, 0, 0.05);
}

/* Benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.benefit-card {
  background-color: rgba(11, 12, 16, 0.8);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-card:hover {
    transform: none;
  }
}

/* How it works section */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.step {
  flex-basis: 30%;
  text-align: center;
  padding: 20px;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--electric-lime);
  color: var(--obsidian-black);
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.service-card {
  background-color: rgba(11, 12, 16, 0.8);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.service-price {
  font-size: 2rem;
  color: var(--electric-lime);
  margin: 20px 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 20px;
  }
}

/* Testimonials section */
.testimonials {
  background-color: rgba(0, 255, 255, 0.05);
}

.testimonial-card {
  background-color: rgba(11, 12, 16, 0.8);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--blush-coral);
}

/* Order form section */
.order-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(11, 12, 16, 0.8);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .order-form {
    padding: 20px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(204, 255, 0, 0.3);
  background-color: rgba(11, 12, 16, 0.9);
  color: var(--mist-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-lime);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

/* FAQ section */
.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background-color: rgba(11, 12, 16, 0.8);
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  color: var(--electric-lime);
  font-weight: bold;
}

.faq-answer {
  padding: 15px 20px;
  background-color: rgba(11, 12, 16, 0.6);
  border-radius: 0 0 10px 10px;
  margin-top: 2px;
}

/* Footer */
footer {
  background-color: rgba(11, 12, 16, 0.9);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--mist-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--electric-lime);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 12, 16, 0.95);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  box-sizing: border-box;
}

.cookie-popup-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
}

.cookie-buttons .btn {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .cookie-popup {
    padding: 15px;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons .btn {
    margin: 0 5px;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .steps-container {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 30px;
    width: 100%;
    flex-basis: 100%;
  }
  
  section {
    padding: 40px 0;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .faq-question, .faq-answer {
    padding: 15px;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.slide-up {
  animation: slideUp 0.5s ease-out;
} 