.policy,
.success {
  padding-block: 120px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success {
  display: flex;
  justify-content: center;
  align-items: center;
}

.policy__text h2 {
  text-align: left;
  font-size: 22px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 17px;
}

.policy__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e0851a 100%);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2e4bc6;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2e4bc6;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem 0;
}

.mobile-menu li {
  padding: 0.5rem 2rem;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: block;
}

.mobile-menu.active {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2e4bc6 0%, #8b5cf6 100%);
  overflow: hidden;
}

.hero-img {
  margin-bottom: 20px;
  width: 100%;
}

.hero-img img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border: 22px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: white;
}

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

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e4bc6;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

/* Bikes Section */
.bikes {
  padding: 6rem 0;
  background: #f8f9fa;
}

.bikes h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e4bc6;
  margin-bottom: 1.5rem;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.bike-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.bike-card:hover {
  transform: translateY(-5px);
}

.bike-image {
  margin-bottom: 1.5rem;
}

.bike-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.bike-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e4bc6;
  margin-bottom: 1rem;
}

.bike-card > p {
  color: #666;
  margin-bottom: 1.5rem;
}

.specifications h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.specifications ul {
  list-style: none;
  color: #666;
}

.specifications li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.specifications li::before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

/* Why Choose Section */
.why-choose {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2e4bc6 0%, #8b5cf6 100%);
  color: white;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.why-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.why-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Categories Section */
.categories {
  padding: 6rem 0;
  background: white;
}

.categories h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e4bc6;
  margin-bottom: 3rem;
}

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

.category-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  margin-bottom: 1rem;
}

.category-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.category-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e4bc6;
  margin-bottom: 1rem;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: #f8f9fa;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e4bc6;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e4bc6;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2e4bc6 0%, #8b5cf6 100%);
  color: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services .section-intro {
  color: rgba(255, 255, 255, 0.9);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.service-image {
  margin-bottom: 1rem;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
  padding: 6rem 0;
  background: white;
}

.contact-form h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e4bc6;
  margin-bottom: 1rem;
}

.contact-form > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e4bc6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: #2e4bc6;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  color: white;
  font-size: 24px;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
}

.cookie-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.cookie-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.cookie-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.cookie-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

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

  .about-content,
  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-text h2,
  .bikes h2,
  .categories h2,
  .testimonials h2,
  .services h2,
  .contact-form h2,
  .why-text h2 {
    font-size: 2rem;
  }

  .bikes-grid,
  .categories-grid,
  .testimonials-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-content {
    margin: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .bike-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .categories-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-card,
  .service-card {
    padding: 1.25rem;
  }
}

/* Animation for scroll */
@media (prefers-reduced-motion: no-preference) {
  .bike-card,
  .category-card,
  .testimonial-card,
  .service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .bike-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .bike-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .bike-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .category-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .category-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .category-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .category-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  .category-card:nth-child(5) {
    animation-delay: 0.5s;
  }
  .category-card:nth-child(6) {
    animation-delay: 0.6s;
  }

  .testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .service-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .service-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .service-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .service-card:nth-child(4) {
    animation-delay: 0.4s;
  }
}

/* Ensure body scrolling works with cookie popup */
body.cookie-popup-open {
  /* Allow scrolling even when cookie popup is open */
  overflow: auto;
}
