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

@media (max-width: 768px) {
  .policy {
    padding-block: 100px 60px !important;
  }
}

.success__text {
  margin-bottom: 27px;
}

/* .success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
} */

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

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 26px;
  color: #000000;
}

.policy__title {
  color: #ffffff;
}

.policy__text h2 {
  text-align: left;

  font-size: 21px;
}

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__text h2,
.policy__text p {
  text-align: left;
  color: #ffffff;
}

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

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

.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 & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b35;
  --dark-bg: #1a1f2e;
  --darker-bg: #0f1419;
  --text-light: #ffffff;
  --text-gray: #b0b8c1;
  --accent-orange: #ff6b35;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Alexandria", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--darker-bg);
  overflow-x: hidden;
}

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

/* Header */
.header {
  background-color: var(--dark-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.logo span {
  color: var(--text-gray);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-orange);
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
 background:  url('../img/hero-section.png') center / cover no-repeat;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-image {
  position: relative;
  max-width: 400px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Alexandria", sans-serif;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #ff5520;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Bike Types Section */
.bike-types {
  padding: 80px 0;
  background-color: var(--darker-bg);
}

.bike-types h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.bike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.bike-card {
  background-color: var(--dark-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bike-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bike-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bike-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bike-card h3 {
  font-size: 22px;
  font-weight: 600;
  padding: 20px 20px 10px;
}

.bike-card p {
  font-size: 14px;
  color: var(--text-gray);
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.benefits h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.benefits-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-us-content > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.why-us-list {
  list-style: none;
}

.why-us-list li {
  font-size: 16px;
  color: var(--text-gray);
  padding: 12px 0 12px 30px;
  position: relative;
  line-height: 1.6;
}

.why-us-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 20px;
}

.why-us-image {
  border-radius: 10px;
  overflow: hidden;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bike Guide Section */
.bike-guide {
  padding: 80px 0;
  background-color: var(--darker-bg);
}

.bike-guide h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.guide-list {
  max-width: 900px;
  margin: 0 auto;
}

.guide-item {
  margin-bottom: 40px;
}

.guide-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.guide-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Contact Form Section */
.contact-form {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.contact-form h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--darker-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-light);
  font-size: 16px;
  font-family: "Alexandria", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.form button {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-gray);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.3s ease;
}

.cookie-popup.show {
  display: block;
}

body.cookie-active {
  overflow-y: auto;
}

body.cookie-active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 9999;
  pointer-events: none;
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 14px;
  color: var(--text-gray);
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-buttons .btn {
  padding: 10px 25px;
  font-size: 14px;
  white-space: nowrap;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .burger-menu {
    display: flex;
  }

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

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

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

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .why-us .container {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    order: -1;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .bike-types h2,
  .benefits h2,
  .bike-guide h2,
  .contact-form h2 {
    font-size: 28px;
  }

  .bike-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

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

  .bike-types,
  .benefits,
  .why-us,
  .bike-guide,
  .contact-form {
    padding: 50px 0;
  }
}
