/* ============= SWIFT CONTENT SECTION - NO CLASS CONFLICT ============= */
.swift-content-section {
  padding: 120px 20px;
  background: #000;
  color: white;
}

.swift-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.swift-text {
  animation: fadeInLeft 0.8s ease-out;
}

.swift-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.swift-title span {
  color: #FFC107;
}

.swift-desc {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
}

.swift-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.swift-feature {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,193,7,0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.swift-feature:hover {
  background: rgba(255,193,7,0.1);
  transform: translateY(-8px);
  border-color: #FFC107;
}

.swift-feature i {
  font-size: 36px;
  color: #FFC107;
  margin-bottom: 16px;
  display: block;
}

.swift-feature h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.swift-list {
  font-size: 18px;
  margin: 32px 0;
  padding-left: 5px;
}

.swift-list li {
  margin: 16px 0;
  padding-left: 30px;
  position: relative;
}

.swift-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFC107;
  font-weight: bold;
  font-size: 20px;
}

.swift-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.swift-btn-primary {
  background: #FFC107;
  color: #000;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255,193,7,0.3);
}

.swift-btn-primary:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,193,7,0.4);
}

.swift-btn-primary.swift-large {
  padding: 20px 44px;
  font-size: 18px;
}

.swift-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid #FFC107;
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.swift-btn-outline:hover {
  background: #FFC107;
  color: #000;
  transform: translateY(-4px);
}

.swift-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.swift-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.swift-image:hover img {
  transform: scale(1.08);
}

.swift-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(255,193,7,0.15) 0%, transparent 50%); */
}

/* Reverse Layout */
.swift-reverse .swift-container {
  direction: rtl;
}

.swift-reverse .swift-text {
  direction: ltr;
  text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
  .swift-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .swift-title { font-size: 42px; }
  .swift-features { grid-template-columns: 1fr; }
  .swift-reverse .swift-container { direction: ltr; }
  .swift-image img { height: 450px; }
}

@media (max-width: 768px) {
  .swift-content-section { padding: 90px 15px; }
  .swift-title { font-size: 36px; }
  .swift-desc { font-size: 17px; }
  .swift-cta { flex-direction: column; }
  .swift-btn-primary, .swift-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .swift-title { font-size: 32px; }
  .swift-feature { padding: 20px; }
  .swift-image img { height: 380px; }
}

/* Simple fade animation */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}



/* section content */

.swift-container-content{
    grid-template-columns:1fr;
}

/* section content end */

/* ==================== FLEET SECTION CSS (No Conflict) ==================== */
.fleet-section {
  padding: 120px 20px;
  background: #000;
  color: white;
  text-align: center;
}

.fleet-container {
  max-width: 1400px;
  margin: 0 auto;
}

.fleet-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}
.fleet-title span { color: #FFC107; }

.fleet-subtitle {
  font-size: 19px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 60px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,193,7,0.15);
  transition: all 0.4s ease;
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(255,193,7,0.15);
  border-color: #FFC107;
}

.fleet-card-featured {
  transform: scale(1.05);
  /* border: 2px solid #FFC107;
  box-shadow: 0 20px 50px rgba(255,193,7,0.2); */
}

.fleet-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: #FFC107;
  color: #000;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}


.fleet-img {
  position: relative;
  overflow: hidden;
  height: 220px;


}




.fleet-img img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;

  /* -webkit-box-reflect: below 0px
    linear-gradient(to bottom,transparent,rgba(0,0,0,0.5)) !important; */
}


.fleet-card:hover .fleet-img img {
  transform: scale(1.1);
}

.fleet-info {
  padding: 28px;
  text-align: left;
}

.fleet-info h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: #FFC107;
}

.fleet-type {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 16px;
  font-weight: 500;
}

.fleet-features {
  list-style: none;
  margin: 20px 0;
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.9;
}

.fleet-features li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.fleet-features li::before {
  content: "✓";
  color: #FFC107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.fleet-price {
  font-size: 28px;
  font-weight: 700;
  color: #FFC107;
  margin-top: 20px;
}
.fleet-price span {
  font-size: 36px;
}

/* Responsive */
@media (max-width: 992px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet-card-featured { transform: scale(1); }
}

@media (max-width: 768px) {
  .fleet-section { padding: 90px 15px; }
  .fleet-title { font-size: 38px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card-featured { transform: scale(1); }
}

@media (max-width: 480px) {
  .fleet-info { padding: 20px; }
  .fleet-info h3 { font-size: 24px; }
}

/* fleet cars end */



.swift-footer {
  background: #0a0a0a;
  color: white;
  padding-top: 90px;
  border-top: 1px solid rgba(255,193,7,0.2);
}

.swift-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  font-size: 36px;
  font-weight: 900;
  color: #FFC107;
  text-decoration: none;
}
.footer-logo span { color: white; }

.footer-desc {
  margin: 20px 0 30px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC107;
  font-size: 18px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #FFC107;
  color: #000;
  transform: translateY(-4px);
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFC107;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #FFC107;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin: 12px 0;
}
.footer-col ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 15.5px;
  transition: 0.3s;
  display: inline-block;
  position: relative;
}
.footer-col ul a:hover {
  color: #FFC107;
  padding-left: 8px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 20px 0;
  font-size: 15px;
}

@media screen and (max-width:768px){
  .footer-contact .contact-item{
    display: block !important;
  }
}

.footer-contact i {
  color: #FFC107;
  font-size: 20px;
  margin-top: 4px;
}
.footer-contact strong {
  color: #FFC107;
}
.footer-contact a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #FFC107;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 80px;
  padding: 25px 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px;
}
.footer-bottom .swift-footer-container {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer-links {
  text-align: right;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #FFC107;
}

/* Responsive */
@media (max-width: 992px) {
  .swift-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .swift-footer {
    padding-top: 70px;
  }
  .swift-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contact .contact-item {
    justify-content: center;
  }
  .footer-bottom .swift-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    text-align: center;
    margin-top: 15px;
  }
  .footer-links a {
    margin: 0 12px;
  }
}

/* footer end */

/* faq */


.faq-section {
  padding: 120px 20px;
  background: #000;
  color: white;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}
.faq-title span { color: #FFC107; }

.faq-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 70px;
}

.faq-accordion {
  text-align: left;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,193,7,0.15);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: #FFC107;
  box-shadow: 0 10px 30px rgba(255,193,7,0.1);
}

.faq-item.active {
  border-color: #FFC107;
  background: rgba(255,193,7,0.05);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: 0.3s;
}

.faq-question h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  font-size: 18px;
  color: #FFC107;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16.5px;
  line-height: 1.7;
  opacity: 0.9;
}

.faq-item.active .faq-answer {
  padding: 0 28px 28px;
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section { padding: 90px 15px; }
  .faq-title { font-size: 38px; }
  .faq-question { padding: 20px; }
  .faq-question h3 { font-size: 18px; }
  .faq-answer { font-size: 16px; }
}

@media (max-width: 480px) {
  .faq-title { font-size: 34px; }
  .faq-question {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


/* faq end */


/* contact us */

 .contact-section {
    
    padding: 50px 0;
  }

  .contact-box {
    background: #ffc107;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #000;
  }

  .contact-box h5 {
    margin: 0;
    font-weight: 700;
  }

  .contact-box a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }

  .map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #ffc107;
  }

/* contact end */



.swift-list li{
    list-style: none !important;
}
.swift-btn-primary:hover{
    color:#000 !important;
    text-decoration: none !important;
}


/* areas list */

.area-list-section {
    padding: 50px 20px;
    background: #fff9e6;
}

.area-list-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #333;
    margin-bottom: 35px;
}

.area-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.area-grid a {
    display: block;
    background: #ffc107;
    border: 2px solid #fff;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.area-grid a:hover {
    background: #ffffff;
    border: 2px solid #FFC107;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* Tablet */
@media (max-width: 900px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .area-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* areas list */