.main {
  margin-top: 80px;
}


.hero-banner {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
}

.hero-banner__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 2rem;
}

.hero-banner__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
  padding: 4rem 0;
}

.hero-banner__title {
  margin-bottom: 2rem;
}

.hero-banner__title-main {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  background: linear-gradient(45deg, white, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner__title-sub {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 1.5rem;
}

.hero-banner__description {
  max-width: 500px;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-banner__actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-banner__btn--primary {
  box-shadow: 0 6px 20px rgba(255, 126, 54, 0.3);
  color: white;
  background: var(--accent-color);
}

.hero-banner__btn--primary:hover {
  box-shadow: 0 8px 25px rgba(255, 126, 54, 0.4);
  background: #e6672a;
  transform: translateY(-3px);
}

.hero-banner__btn--secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.hero-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-banner__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.hero-banner__stat {
  text-align: center;
}

.hero-banner__stat i {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-size: 2rem;
}

.hero-banner__stat-number {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 800;
  font-size: 2.5rem;
}

.hero-banner__stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero-banner__image {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hero-banner__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-banner__image:hover .hero-banner__img {
  transform: scale(1.05);
}

.hero-banner__image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 50px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hero-banner__image-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-banner__image-overlay i {
  font-size: 2rem;
}

.hero-banner__waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
  fill: var(--bg-color);
  rotate: 180deg;
}


.rental-benefits {
  padding: 6rem 0;
  background: var(--bg-color);
}

.rental-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.rental-benefits__header {
  margin-bottom: 4rem;
  text-align: center;
}

.rental-benefits__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.rental-benefits__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.rental-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  border: 1px solid rgba(26, 109, 177, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(26, 109, 177, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 20px 60px rgba(26, 109, 177, 0.15);
  transform: translateY(-10px);
}

.benefit-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
}

.benefit-card__icon i {
  color: white;
  font-size: 2rem;
}

.benefit-card__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.benefit-card__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.benefit-card__features {
  list-style: none;
}

.benefit-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.benefit-card__features i {
  color: var(--accent-color);
  font-size: 0.9rem;
}


.popular-models {
  padding: 6rem 0;
  background: var(--secondary-bg-color);
}

.popular-models__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.popular-models__header {
  margin-bottom: 4rem;
  text-align: center;
}

.popular-models__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.popular-models__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.boat-carousel {
  position: relative;
}

.boat-carousel__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

@media (max-width: 425px) {
  .boat-carousel__track {
    grid-template-columns: 1fr;
  }
}

.boat-card {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(26, 109, 177, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.boat-card:hover {
  box-shadow: 0 25px 70px rgba(26, 109, 177, 0.15);
  transform: translateY(-10px);
}

.boat-card__image {
  position: relative;
  overflow: hidden;
}

.boat-card__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.boat-card:hover .boat-card__img {
  transform: scale(1.05);
}

.boat-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--main-color);
}

.boat-card__badge--adventure {
  background: var(--accent-color);
}

.boat-card__badge--traditional {
  background: #228B22;
}

.boat-card__badge--family {
  background: #9932CC;
}

.boat-card__content {
  padding: 2rem;
}

.boat-card__name {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.boat-card__specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.boat-card__spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.boat-card__spec i {
  color: var(--secondary-color);
}

.boat-card__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.boat-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.boat-card__feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 15px;
  padding: 0.4rem 0.8rem;
  color: var(--text-color);
  font-size: 0.8rem;
  background: var(--secondary-bg-color);
}

.boat-card__feature i {
  color: var(--secondary-color);
  font-size: 0.75rem;
}

.boat-card__pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boat-card__price {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.boat-card__price small {
  opacity: 0.8;
  font-weight: 400;
  font-size: 0.9rem;
}

.boat-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.boat-card__btn:hover {
  background: #e6672a;
  transform: translateY(-2px);
}

.boat-carousel__controls {
  display: none;
}


.how-it-works {
  padding: 6rem 0;
  background: var(--bg-color);
}

.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-it-works__header {
  margin-bottom: 4rem;
  text-align: center;
}

.how-it-works__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.how-it-works__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 60px;
  z-index: 1;
  width: 2px;
  height: 4rem;
  background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.process-step:last-child::before {
  display: none;
}

.process-step--reverse {
  grid-template-columns: auto 1fr auto;
}

.process-step--reverse .process-step__content {
  order: 2;
}

.process-step--reverse .process-step__image {
  order: 3;
}

.process-step__number {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(26, 109, 177, 0.3);
  color: white;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
}

.process-step__number i {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.process-step__number span {
  font-weight: 700;
  font-size: 1.5rem;
}

.process-step__content {
  border: 1px solid rgba(26, 109, 177, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(26, 109, 177, 0.1);
  background: white;
}

.process-step__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.75rem;
}

.process-step__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-step__features {
  list-style: none;
}

.process-step__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.process-step__features i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.process-step__image {
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(26, 109, 177, 0.15);
  overflow: hidden;
}

.process-step__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.process-step:hover .process-step__img {
  transform: scale(1.05);
}


.customer-reviews {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, #E8F4FD 100%);
}

.customer-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.customer-reviews__header {
  margin-bottom: 4rem;
  text-align: center;
}

.customer-reviews__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.customer-reviews__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.review-card {
  border: 1px solid rgba(26, 109, 177, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(26, 109, 177, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 20px 60px rgba(26, 109, 177, 0.15);
  transform: translateY(-5px);
}

.review-card__header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-card__avatar {
  flex-shrink: 0;
}

.review-card__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  margin-bottom: 0.25rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.review-card__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.review-card__location i {
  color: var(--accent-color);
}

.review-card__rating {
  display: flex;
  gap: 0.2rem;
}

.review-card__rating i {
  color: #FFD700;
  font-size: 0.9rem;
}

.review-card__text {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.review-card__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.85rem;
}

.review-card__boat,
.review-card__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-card__boat i,
.review-card__date i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.customer-reviews__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  border-top: 1px solid rgba(26, 109, 177, 0.1);
  padding: 2rem 0;
}

.review-stat {
  text-align: center;
}

.review-stat__number {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 800;
  font-size: 3rem;
}

.review-stat__stars {
  margin-bottom: 0.5rem;
  color: #FFD700;
  font-size: 1.2rem;
}

.review-stat__icon {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-size: 1.8rem;
}

.review-stat__label {
  opacity: 0.8;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}




@media (max-width: 1024px) {
  .hero-banner__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-banner__title-main {
    font-size: 3rem;
  }

  .hero-banner__stats {
    justify-content: center;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .process-step--reverse {
    grid-template-columns: 1fr;
  }

  .process-step--reverse .process-step__content,
  .process-step--reverse .process-step__image {
    order: unset;
  }

  .process-step::before {
    display: none;
  }

  .customer-reviews__stats {
    gap: 2rem;
  }
}


@media (max-width: 768px) {
  .main {
    margin-top: 70px;
  }

  .hero-banner {
    min-height: 100vh;
  }

  .hero-banner__container {
    padding: 0 1rem;
  }

  .hero-banner__content {
    padding: 2rem 0;
  }

  .hero-banner__title-main {
    font-size: 2.5rem;
  }

  .hero-banner__title-sub {
    font-size: 1.2rem;
  }

  .hero-banner__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-banner__stats {
    gap: 2rem;
  }

  .rental-benefits,
  .popular-models,
  .how-it-works,
  .customer-reviews {
    padding: 4rem 0;
  }

  .rental-benefits__container,
  .popular-models__container,
  .how-it-works__container,
  .customer-reviews__container {
    padding: 0 1rem;
  }

  .rental-benefits__title,
  .popular-models__title,
  .how-it-works__title,
  .customer-reviews__title {
    font-size: 2rem;
  }

  .rental-benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 2rem;
  }

  .boat-carousel__track {
    overflow-x: auto;
  }

  .boat-card {
    min-width: 280px;
  }

  .process-step__number {
    width: 100px;
    height: 100px;
  }

  .process-step__content {
    padding: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .customer-reviews__stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .main {
    margin-top: 60px;
  }

  .hero-banner__title-main {
    font-size: 2rem;
  }

  .hero-banner__title-sub {
    font-size: 1rem;
  }

  .hero-banner__btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .rental-benefits,
  .popular-models,
  .how-it-works,
  .customer-reviews {
    padding: 3rem 0;
  }

  .benefit-card,
  .process-step__content {
    padding: 1.5rem;
  }

  .process-step__number {
    width: 80px;
    height: 80px;
  }

  .process-step__number i {
    font-size: 1.5rem;
  }

  .process-step__number span {
    font-size: 1.2rem;
  }

  .boat-card__content {
    padding: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }
}

.footer__wave {
  fill: #E8F4FD;
}

@media (max-width: 1024px) {
  .hero-banner__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}