* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Segoe UI",  Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #ffc630 0%, #ffe994 100%);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.header {
  background: linear-gradient(135deg, #0a3560 0%, #1e5a96 100%) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
  background: transparent !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent !important;
}

.logo {
  display: flex;
  align-items: center;
  color: white !important;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  background: transparent !important;
}

.logo img {
  background: transparent !important;
  mix-blend-mode: normal;
  transform: scale(1.9);
  margin-left: 34px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  background: transparent !important;
}

.nav-link {
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
  color: #ffc630 !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffc630;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent !important;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: white !important;
  margin: 4px 0;
  transition: 0.3s;
  display: block;
}

.hero {
  background: linear-gradient(rgba(74, 155, 142, 0.85), rgba(90, 175, 160, 0.85)), url("/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center !important;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.btn {
  display: inline-flex;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #0a5a96 0%, #1e5a96 100%);
  color: white;
  border: none;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 90, 150, 0.4);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.8remx; 
  margin-bottom: 3rem;
  color: #0a3560;
  font-weight: bold;
}

.services-section-new {
  background: #c8d5b9;
  padding: 100px 0;
}

.services-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-carousel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  align-items: stretch;
}

.service-carousel-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.service-carousel-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #ff8c00;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-carousel-header h3 {
  font-size: 2rem;
  color: #0a3560;
  margin: 0;
  font-weight: bold;
}

.service-carousel-header .service-count {
  font-size: 1rem;
  color: #ff8c00;
  font-weight: 600;
}

.carousel-container {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.carousel-image {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-carousel-card:hover .carousel-image img {
  transform: scale(1.05);
}

.carousel-info {
  text-align: center;
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

.carousel-info h4 {
  font-size: 1.5rem;
  color: #0a3560;
  margin-bottom: 0;
  font-weight: bold;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-info p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-price {
  font-size: 1.4rem;
  color: #ff8c00;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 50px;
  display: inline-block;
  margin-top: auto;
}

.carousel-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.carousel-nav-button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.carousel-nav-button.prev {
  left: -25px;
}

.carousel-nav-button.next {
  right: -25px;
}

.carousel-nav-button i {
  font-size: 1.2rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator.active {
  background: #ff8c00;
  transform: scale(1.4);
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}

.carousel-indicator:hover {
  background: #ff8c00;
  transform: scale(1.2);
}

.services-full-width {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-single-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.service-card-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #ff8c00;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card-header h3 {
  font-size: 2rem;
  color: #0a3560;
  margin: 0;
  font-weight: bold;
}

.service-card-header .service-count {
  font-size: 1rem;
  color: #ff8c00;
  font-weight: 600;
}

.service-card-image {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-single-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 180px;
  justify-content: flex-start;
}

.service-card-info h4 {
  font-size: 1.5rem;
  color: #0a3560;
  margin: 0;
  font-weight: bold;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-info p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-price {
  font-size: 1.4rem;
  color: #ff8c00;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 50px;
  display: inline-block;
  margin-top: auto;
}

.about-section {
  background: linear-gradient(135deg, #ffc630 0%, #ffe994 100%);
  scroll-margin-top: 70px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #0a3560;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
  display: block;
}

.advantages-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 140, 0, 0.3);
}

.advantages-title {
  font-size: 2.5rem;
  color: #0a3560;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: bold;
}

.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #ff8c00;
}

.advantage-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.advantage-card h4 {
  color: #0a3560;
  font-size: 1.3rem;
  margin: 0;
  font-weight: bold;
}

.advantage-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.advantages-carousel-container {
  position: relative;
  padding: 0 80px;
  margin-top: 2rem;
}

.advantages-carousel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-to-rent-section {
  background: linear-gradient(135deg, #ffc630 0%, #ffe994 100%);
  padding: 100px 0;
  scroll-margin-top: 70px;
}

.how-to-rent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.how-to-rent-step {
  background: white;
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.how-to-rent-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #ff8c00;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.how-to-rent-step:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.how-to-rent-step h3 {
  color: #0a3560;
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
}

.how-to-rent-step p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.faq-section {
  background: linear-gradient(135deg, #c8d5b9 0%, #d4e0c5 100%);
  padding: 100px 0;
  scroll-margin-top: 70px;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a3560;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.faq-question.active {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  color: #ff8c00;
}

.faq-question i {
  color: #ff8c00;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background: linear-gradient(135deg, #0a3560 0%, #1e5a96 100%);
  color: white;
  scroll-margin-top: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.contact-item p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.contact-item a {
  color: #ffc630;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: bold;
}

.footer-section p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-section i {
  color: #00ced1;
}

.footer-section a {
  color: #00ced1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffc630;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #0a3560 0%, #1e5a96 100%) !important;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-carousel-grid {
    grid-template-columns: 1fr;
  }

  .service-carousel-card,
  .service-single-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .service-carousel-header,
  .service-card-header {
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .service-carousel-header h3,
  .service-card-header h3 {
    font-size: 1.6rem;
  }

  .carousel-container {
    padding: 1.5rem;
  }

  .carousel-info,
  .service-card-info {
    min-height: auto;
  }

  .carousel-info h4,
  .service-card-info h4 {
    font-size: 1.3rem;
    min-height: auto;
  }

  .carousel-info p,
  .service-card-info p {
    font-size: 0.95rem;
    min-height: auto;
  }

  .carousel-price,
  .service-card-price {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }

  .advantages-carousel-container {
    padding: 0 60px;
  }

  .advantages-carousel-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card:not(:first-child) {
    display: none;
  }

  .advantage-card {
    padding: 1.5rem;
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .advantage-card h4 {
    font-size: 1.1rem;
  }

  .advantage-card p {
    font-size: 0.9rem;
  }

  .how-to-rent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .advantages-carousel-container {
    padding: 0 50px;
  }

  .how-to-rent-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .carousel-nav-button.prev {
    left: -20px;
  }

  .carousel-nav-button.next {
    right: -20px;
  }
}