/* Locally scoped styles - wrap content in .porto-airbag class */
.porto-airbag {
  font-family: "Open Sans", sans-serif;
  color: #444;
  line-height: 1.6;
}

.porto-airbag * {
  box-sizing: border-box;
}

.porto-airbag a {
  color: #f56200;
  text-decoration: none;
  transition: all 0.3s ease;
}

.porto-airbag a:hover {
  color: #f56200;
}

.porto-airbag h1, .porto-airbag h2, .porto-airbag h3, .porto-airbag h4, .porto-airbag h5, .porto-airbag h6 {
  font-family: "Raleway", sans-serif;
}

/* Hero Section - Split Layout */
.porto-airbag #hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.porto-airbag #hero .hero-content {
  flex: 0 0 30%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 98, 0, 0.9), rgba(229, 81, 0, 0.8)), linear-gradient(45deg, #1a1a1a, #2d2d2d);
  color: white;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.porto-airbag #hero .hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 98, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.porto-airbag #hero .hero-video {
  flex: 0 0 70%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.porto-airbag #hero .hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.porto-airbag #hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.porto-airbag #hero p {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.porto-airbag #hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  line-height: 1;
  margin: 10px 10px 10px 0;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, #eba373, #f36316);
  box-shadow: 0 8px 25px rgba(245, 98, 0, 0.3);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.porto-airbag #hero .btn-get-started:hover {
  background: linear-gradient(135deg, #daad90, #daad90);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 98, 0, 0.4);
}

/* Sections */
.porto-airbag section {
  padding: 80px 0;
}

.porto-airbag .section-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.porto-airbag .section-title {
  text-align: center;
  padding-bottom: 40px;
}

.porto-airbag .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #f56200;
  position: relative;
}

.porto-airbag .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f56200, #e55100);
}

.porto-airbag .section-title p {
  margin-bottom: 0;
  color: #666;
  font-size: 16px;
}

/* About Section */
.porto-airbag .about {
  padding: 60px 0;
}

.porto-airbag .about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 500px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.porto-airbag .about .video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.porto-airbag .about .play-btn {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f56200, #e55100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 98, 0, 0.3);
  cursor: pointer;
}

.porto-airbag .about .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(245, 98, 0, 0.4);
}

.porto-airbag .about .play-btn i {
  color: #fff;
  font-size: 28px;
  margin-left: 3px;
}

.porto-airbag .about .about-content {
  padding: 40px;
}

.porto-airbag .about .icon-box {
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.porto-airbag .about .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.porto-airbag .about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f56200, #e55100);
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(245, 98, 0, 0.3);
}

.porto-airbag .about .icon-box .icon i {
  color: #fff;
  font-size: 24px;
}

.porto-airbag .about .icon-box .description {
  overflow: hidden;
  color: #666;
  line-height: 1.6;
}

.porto-airbag .about .icon-box .description .title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
  color: #343a40;
}

.porto-airbag .btn-custom-orange {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #f56200, #e55100);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(245, 98, 0, 0.3);
  text-decoration: none;
}

.porto-airbag .btn-custom-orange:hover {
  background: linear-gradient(135deg, #e55100, #d84315);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 98, 0, 0.4);
  color: #fff;
}

/* Products Section */
.porto-airbag .product {
  padding: 80px 0;
}

.porto-airbag .product .member {
  text-align: center;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.porto-airbag .product .member::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: solid 5px #d84315;
  background-size: 400% 400%;
  z-index: -1;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.porto-airbag .product .member:hover::before {
  opacity: 1;
}

.porto-airbag .product .member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.porto-airbag .product .member .pic {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.porto-airbag .product .member .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.porto-airbag .product .member:hover .pic img {
  transform: scale(1.05);
}

.porto-airbag .product .member .pic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 98, 0, 0.8), rgba(229, 81, 0, 0.8));
  opacity: 0;
  transition: all 0.3s ease;
}

.porto-airbag .product .member:hover .pic::before {
  opacity: 1;
}

.porto-airbag .product .member .pic h4 {
  font-weight: 700;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  backdrop-filter: blur(10px);
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.porto-airbag .product .member .info {
  padding: 25px;
}

.porto-airbag .product .member .info h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: #343a40;
}

.porto-airbag .product .member .info p {
  color: #666;
  margin: 0;
}

/* FAQ Section */
.porto-airbag .faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.porto-airbag .faq .faq-list {
  padding: 0;
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.porto-airbag .faq .faq-list li {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.porto-airbag .faq .faq-list li:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.porto-airbag .faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding: 25px 60px 25px 25px;
  color: #343a40;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.porto-airbag .faq .faq-list a:hover {
  color: #f56200;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.porto-airbag .faq .faq-list a i {
  font-size: 20px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.3s ease;
  color: #f56200;
}

.porto-airbag .faq .faq-list a.collapsed i {
  transform: translateY(-50%) rotate(-90deg);
}

.porto-airbag .faq .faq-list .collapse-content {
  padding: 0 25px 25px 25px;
  border-top: 1px solid #eee;
  color: #666;
  line-height: 1.6;
}

.porto-airbag .faq .faq-list .collapse-content p {
  margin: 20px 0 0 0;
  padding-left: 20px;
  border-left: 4px solid #f56200;
}

/* Call To Action Section */
.porto-airbag .cta {
  background: linear-gradient(135deg, rgba(245, 98, 0, 0.9), rgba(201, 158, 134, 0.9)), url("../img/slide/slide-3.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.porto-airbag .cta h3 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.porto-airbag .cta p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.porto-airbag .cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  line-height: 1;
  margin: 10px;
  color: #fff;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  text-decoration: none;
}

.porto-airbag .cta .cta-btn:hover {
  background: linear-gradient(135deg, #f56200, #e55100);
  border-color: #f56200;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 98, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .porto-airbag #hero {
    flex-direction: column;
    height: auto;
  }
  
  .porto-airbag #hero .hero-content {
    flex: 1;
    padding: 40px 20px;
  }
  
  .porto-airbag #hero .hero-video {
    flex: 1;
    height: 300px;
  }
  
  .porto-airbag #hero h2 {
    font-size: 32px;
  }

  .porto-airbag #hero p {
    font-size: 16px;
  }

  .porto-airbag #hero .btn-get-started {
    padding: 12px 25px;
    font-size: 14px;
    margin: 5px;
  }

  .porto-airbag .cta h3 {
    font-size: 28px;
  }

  .porto-airbag .cta p {
    font-size: 16px;
  }

  .porto-airbag .section-title h2 {
    font-size: 28px;
  }

  .porto-airbag .product .member .pic {
    height: 200px;
  }
}