/* Base Styles */
:root {
    --primary: #80c01d;
    --primary-dark: #6ba219;
    --secondary: #117C9C;
    --dark: #1D1B1B;
    --light: #f5fafd;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 2.8rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary);
}

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1.5rem;
}
.fleet-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.fleet-tab {
  padding: 10px 20px;
  background-color: #efecec;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.fleet-tab.active {
  background-color: var(--primary);
  color: white;
}

.fleet-content {
  display: none;
}

.fleet-content.active {
  display: block;    text-align: center;
}

.fleet-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 25px;
}
.fleet-spec {
display: flex;
    align-items: center;
    text-align: left;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 6px;
}
.fleet-specs p {
        margin-bottom: 0;
}
.fleet-details {
        text-align: left;
}
.fleet-spec-icon {
  width: 40px;
min-width: 40px;
  height: 40px;
  background-color: rgba(128, 192, 29, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--primary);
  font-size: 18px;
}

.fleet-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.fleet-feature {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.fleet-feature i {
  color: var(--primary);
  margin-right: 8px;
}


     
        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
            margin: 20px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 16px;
            padding: 8px;
        }

        .pricing-table {
            width: 100%;
            min-width: 700px; /* Уменьшили минимальную ширину */
            border-collapse: collapse;
            margin-bottom: 20px;
            font-size: 14px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .pricing-table th,
        .pricing-table td {
            padding: 15px 18px;
            text-align: left;
            border-bottom: 1px solid #eee;
            white-space: nowrap; /* Предотвращает перенос текста */
            vertical-align: top;
        }

        /* Остальные столбцы с центрированием */
        .pricing-table td:not(:first-child),
        .pricing-table th:not(:first-child) {
            text-align: center;
            min-width: 140px;
        }

        /* Стили для цен */
        .pricing-table td:nth-child(2),
        .pricing-table td:nth-child(3) {
          font-size: 14px;
        }

        /* Стили для времени */
        .pricing-table td:nth-child(4) {
            color: #64748b;
            font-size: 14px;
                font-style: italic;
        }

        .pricing-table th {
            background-color: var(--light);
            font-weight: 600;
            color: var(--secondary);
            position: sticky;
            top: 0;
            z-index: 10;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .pricing-table tr:hover td {
            background-color: var(--light);
            transform: scale(1.01);
            transition: all 0.2s ease;
        }

        .pricing-table tbody tr {
            transition: all 0.2s ease;
        }

        /* Стили для первого столбца (маршруты) */
        .pricing-table td:first-child,
        .pricing-table th:first-child {
            position: sticky;
            left: 0;
            background-color: white;
            z-index: 5;
            box-shadow: 2px 0 5px rgba(0,0,0,0.1);
            min-width: 180px;
            max-width: 200px;
            white-space: normal; /* Разрешаем перенос в первом столбце */
            line-height: 1.4;
            font-weight: 600;
        }

        .pricing-table th:first-child {
            background-color: var(--light);
            color: var(--secondary);
        }

        .pricing-table tr:hover td:first-child {
            background-color: var(--light);
        }

        /* Добавим переменные для совместимости, если их нет */
        :root {
            --light: #f8f9fa;
            --secondary: #6c757d;
        }

        /* Индикатор скролла */
        .scroll-indicator {
            text-align: center;
            color: #7f8c8d;
            font-size: 12px;
            margin-top: 10px;
            display: none;
        }

        /* Медиа-запросы для мобильных устройств */
        @media screen and (max-width: 768px) {
          .quality-badge-text {
                text-align: left;
                font-size: 11px!important;
                padding-right: 7px;
          }
            .pricing-table {
                font-size: 12px;
                min-width: 700px;
            }

            .pricing-table th,
            .pricing-table td {
                padding: 8px 10px;
            }

            .pricing-table td:first-child,
            .pricing-table th:first-child {
                min-width: 150px;
                max-width: 170px;
            }

            .scroll-indicator {
                display: block;
            }
        }

        @media screen and (max-width: 480px) {
            .pricing-table {
                font-size: 12px;
                min-width: 600px;
            }

            .pricing-table th,
            .pricing-table td {
                padding: 10px 12px;
            }

            .pricing-table td:first-child,
            .pricing-table th:first-child {
                min-width: 130px;
                max-width: 150px;
            }
        }

        /* Стили для скроллбара (для webkit браузеров) */
        .table-container::-webkit-scrollbar {
            height: 0px;
        }

        .table-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .table-container::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }

        .table-container::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/* Pricing Factors */
.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.factor-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.factor-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(128, 192, 29, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 20px;
}
.testimonials-carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.carousel-control {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
      margin-bottom: 15px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}
/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 50px 0;
}

.section-alt {
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.tree-planting-link:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5) !important;
    background: linear-gradient(135deg, #34ce57, #17a2b8) !important;
    color: white !important;
    text-decoration: none !important;
}
.reforestrationvideo {
    text-align: left; margin: 15px 0;
}
@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(40, 167, 69, 0.5), 0 0 0 5px rgba(40, 167, 69, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
}

@media (max-width: 768px) {
    .tree-planting-link {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .tree-planting-link i.fab.fa-youtube {
        font-size: 18px !important;
    }
    .reforestrationvideo {
        text-align: center; margin: 25px 0 10px;
    }
}
.section-tag {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
}

.section-header h2 {
    margin-top: 4px;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.form-note {
    text-align: center;
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--gray);
}

header {
    background-color: rgba(42, 95, 116, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header.header-sticky {
    background-color: rgba(42, 95, 116, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.header-sticky .logo img {
    height: 40px;
    transition: height 0.3s ease;
}

header.header-sticky .navbar {
    padding: 12px 0;
    transition: padding 0.3s ease;
}

header.header-sticky .nav-links a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

header.header-sticky .nav-links a:hover {
    background: rgba(128, 192, 29, 0.15);
    color: #80c01d;
    transform: translateY(-1px);
}

header.header-sticky .nav-links a::after {
    display: none;
}

header.header-sticky .btn-primary {
    padding: 8px 20px;
    font-size: 13px;
    background: linear-gradient(135deg, #80c01d, #9fd122);
    border: none;
    box-shadow: 0 4px 12px rgba(128, 192, 29, 0.3);
    transform: scale(0.95);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header.header-sticky .btn-primary:hover {
    background: linear-gradient(135deg, #72a91a, #80c01d);
    box-shadow: 0 6px 20px rgba(128, 192, 29, 0.4);
    transform: scale(1) translateY(-2px);
}

header.header-sticky .mobile-toggle {
    background: rgb(227 227 227 / 20%);
    border-radius: 6px;
    padding: 8px;
    transition: all 0.3s ease;
}

header.header-sticky .mobile-toggle:hover {
    transform: scale(1.05);
}

header.header-sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 192, 29, 0.5), transparent);
}

header.header-sticky .navbar {
    position: relative;
}

header.header-sticky .navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.5;
}

@media (max-width: 992px) {
    header.header-sticky .nav-links a:hover {
        transform: translateX(5px) scale(1.02);
    }
}

@keyframes headerSticky {
    from {
        box-shadow: none;
        background-color: rgba(42, 95, 116, 0.97);
    }
    to {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        background-color: rgba(42, 95, 116, 0.95);
    }
}

header.header-sticky {
    animation: headerSticky 0.3s ease forwards;
}
header.header-sticky .nav-links li {
    margin-left: 0;
}

header {
    will-change: transform, background-color, box-shadow;
}

header:not(.header-sticky) {
    will-change: auto;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    display: flex; 
}

.logo img {
    height: 50px;
    border-radius: 0;
    transition: height 0.1s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}
.avail-wrapper {
    margin: 25px 0 0;
}
.contact-info {
 display: flex;
    flex-direction: column;
}

.contact-info a {
    display: flex;
    align-items: center;
}
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"],
input[type="checkbox"]#privacy {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    flex-shrink: 0;
}

.form-check input[type="checkbox"]:hover,
input[type="checkbox"]#privacy:hover {
    border-color: #80c01d;
    box-shadow: 0 0 0 3px rgba(128, 192, 29, 0.1);
}

.form-check input[type="checkbox"]:checked,
input[type="checkbox"]#privacy:checked {
    background-color: #80c01d;
    border-color: #80c01d;
    box-shadow: 0 2px 8px rgba(128, 192, 29, 0.3);
}

.form-check input[type="checkbox"]:checked::after,
input[type="checkbox"]#privacy:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    animation: checkboxCheck 0.3s ease;
}

.form-check input[type="checkbox"]:focus,
input[type="checkbox"]#privacy:focus {
    outline: none;
    border-color: #80c01d;
    box-shadow: 0 0 0 3px rgba(128, 192, 29, 0.2);
}

.form-check label,
label[for="privacy"] {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.form-check label:hover,
label[for="privacy"]:hover {
    color: #495057;
}

.form-check a,
label[for="privacy"] a {
    color: #80c01d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-check a:hover,
label[for="privacy"] a:hover {
    color: #6ba015;
    text-decoration: underline;
}

@keyframes checkboxCheck {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 768px) {
    .form-check input[type="checkbox"],
    input[type="checkbox"]#privacy {
        width: 18px;
        height: 18px;
    }
    
    .form-check label,
    label[for="privacy"] {
        font-size: 13px;
    }
    header.header-sticky .navbar {
        padding: 6px 0px;
    }
}

.tree-planting-link:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5) !important;
    background: linear-gradient(135deg, #34ce57, #17a2b8) !important;
    color: white !important;
    text-decoration: none !important;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(40, 167, 69, 0.5), 0 0 0 5px rgba(40, 167, 69, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
}

@media (max-width: 768px) {
    .tree-planting-link {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .tree-planting-link i.fab.fa-youtube {
        font-size: 18px !important;
    }
}


.tree-planting-link:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5) !important;
    background: linear-gradient(135deg, #34ce57, #17a2b8) !important;
    color: white !important;
    text-decoration: none !important;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(40, 167, 69, 0.5), 0 0 0 5px rgba(40, 167, 69, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
}

@media (max-width: 768px) {
    .tree-planting-link {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .tree-planting-link i.fab.fa-youtube {
        font-size: 18px !important;
    }
}

.payment-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .payment-logo {
            height: 35px;
            margin: 5px;
            border-radius: 6px;
            transition: all 0.3s ease;
            filter: brightness(0.9) saturate(0.8);
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .payment-logo:hover {
            transform: translateY(-3px) scale(1.05);
            filter: brightness(1.1) saturate(1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
            background: rgba(255, 255, 255, 0.1);
        }

        .operation-text {
            color: #ccc;
            margin-bottom: 0;
            font-size: 15px;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            font-weight: 300;
        }

        .payment-section-card {
            margin-top: 50px;
            padding: 35px 30px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border-radius: 16px;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .payment-title {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spelling: 1px;
            opacity: 0.9;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
            margin-left: auto;
            margin-right: auto;
        }

        .payment-item {
            background: rgb(255 255 255 / 9%);
            padding: 20px 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .payment-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .payment-item img {
            height: 32px;
            width: auto;
            filter: brightness(0.95);
            transition: filter 0.3s ease;
        }

        .payment-item:hover img {
            filter: brightness(1.1);
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            .payment-section {
                margin-top: 40px;
                padding-top: 25px;
            }
            
            .payment-methods {
                gap: 15px;
                margin-bottom: 20px;
            }
            
            .payment-logo {
                height: 30px;
                margin: 3px;
                padding: 6px 10px;
            }
            
            .operation-text {
                font-size: 14px;
                padding: 0 15px;
            }
            
            .payment-section-card {
                margin-top: 40px;
                padding: 25px 20px;
                border-radius: 12px;
            }
            
            .payment-title {
                font-size: 16px;
                margin-bottom: 20px;
            }
            
            .payment-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin-bottom: 25px;
            }
            
            .payment-item {
                padding: 15px 10px;
            }
            
            .payment-item img {
                height: 28px;
            }
        }

        @media screen and (max-width: 480px) {
            .payment-section {
                margin-top: 30px;
                padding-top: 20px;
            }
            
            .payment-methods {
                gap: 10px;
                justify-content: center;
            }
            
            .payment-logo {
                height: 26px;
                margin: 2px;
                padding: 5px 8px;
            }
            
            .operation-text {
                font-size: 13px;
                padding: 0 10px;
            }
            
            .payment-section-card {
                margin-top: 30px;
                padding: 20px 15px;
            }
            
            .payment-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .payment-item {
                padding: 8px 8px;
            }
            
            .payment-item img {
                height: 24px; 
            }
        }
        
        .demo-separator {
            margin: 60px 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

@media screen and (min-width: 1200px) and (max-width: 1570px) {
   .badge-wrapper {
        display:none!important;
   }
}
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
    background: #e2e2e257;
    width: 40px;
    text-align: center;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://bcs-bus.com/templates/bcs/images/ita1varnewland-bcsbus.webp) no-repeat center center / cover;
    padding: 70px 0 65px;
    color: var(--white);
    margin-top: 93px;
    position: relative;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-highlights {
    display: flex;
    margin: 25px 0;
    flex-wrap: wrap;
}

.highlight-item {
    margin: 0 20px 10px 0;
    display: flex;
    align-items: center;
}

.highlight-item i {
    color: var(--primary);
    margin-right: 8px;
}
.popular-routes {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.popular-routes h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.popular-routes h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.popular-routes p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.route-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
    border-top: 3px solid transparent;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
}

.route-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.route-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.route-arrow {
    margin: 0 15px;
    color: var(--gray);
}

.route-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.route-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.route-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.route-meta span {
    display: flex;
    align-items: center;
}

.route-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.routes-cta {
    margin-top: 20px;
    padding: 12px 30px;
}
.hero-badges {
    display: flex;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-badge img {
    height: 35px;
    margin-right: 10px;
    border-radius: 0;
}

.badge-wrapper {
    position: fixed;
    top: 159px;
    right: 9px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.quality-badge {
    background: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quality-badge img {
    height: 64px;
    margin-right: 10px;
    border-radius: 6px;
}

.quality-badge-text {
    font-size: 13px;
    color: var(--dark);
        line-height: 15px;
}

.quality-badge-text strong {
    display: block;
    color: rgb(93, 196, 130);
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 400px;
    position: relative;
}

.hero-form-header {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 5px 5px 0 0;
    margin: -25px -25px 20px;
}

.hero-form-header h3 {
    margin: 0;
    color: white;
}

.hero-form .form-group {
    margin-bottom: 10px;
}

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

.form-control {
    width: 100%;
    padding: 12px 11px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 3px;
}

.form-check label {
    font-size: 14px;
    color: var(--gray);
}

.form-check a {
    color: var(--primary);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 20px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.event-benefits {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.event-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray);
}

.event-benefits i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 16px;
}

.feature-card:hover .event-benefits i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
}

.feature-card h3 {
    margin-bottom: 4px;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.feature-link i {
    font-size: 12px;
    margin-left: 5px;
}

.feature-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
    position: relative;
}

.feature-cta-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.feature-cta h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-cta p {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-options {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    margin: 0 15px 10px;
}

.payment-option img {
    height: 30px;
    margin-right: 10px;
    border-radius: 0;
}

.payment-option span {
    font-size: 14px;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.step-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.step-tip {
    padding: 10px;
    background-color: rgba(128, 192, 29, 0.1);
    border-radius: 5px;
}

.step-tip i {
    color: var(--primary);
    margin-right: 8px;
    float: left;
    margin-top: 3px;
}

.step-tip p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: var(--dark);
}

.contact-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-box-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.contact-box h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-box p {
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
}

.contact-buttons .btn i {
    margin-right: 8px;
}

.languages {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.languages i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 20px;
}

/* Fleet Section */
.fleet {
    background-color: var(--light);
}

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

.fleet-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.fleet-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.fleet-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    z-index: 1;
}

.fleet-img {
    height: 230px;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.1);
}
/* 
.fleet-info {
    padding: 25px;
} */

.fleet-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.fleet-capacity {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-weight: 600;
}

.fleet-capacity img {
    width: 20px;
    margin-right: 5px;
    border-radius: 0;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.fleet-feature {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 14px;
}

.fleet-feature::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 8px;
    font-size: 12px;
}

.fleet-custom {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.fleet-custom h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.fleet-custom p {
    max-width: 700px;
    margin: 0 auto 20px;
}

.fleet-benefits {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.fleet-benefit {
    display: flex;
    align-items: center;
    margin: 0 20px 10px 0;
}

.fleet-benefit i {
    color: var(--primary);
    margin-right: 8px;
}

/* Services Section */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 14px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-icon {
    font-size: 40px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
}

.service-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.service-tag {
    background-color: rgba(128, 192, 29, 0.1);
    color: var(--dark);
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.service-cta {
    text-align: center;
    padding: 60px 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-cta-tag {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-size: 13px;
    padding: 3px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.service-cta h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-cta p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-benefits {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.service-benefit {
    display: flex;
    align-items: center;
    margin: 0 20px 10px 0;
}

.service-benefit img {
    height: 25px;
    margin-right: 8px;
    border-radius: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.rating-summary {
    text-align: center;
    margin-bottom: 40px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 50px;
    padding: 5px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating-stars {
    display: flex;
    color: gold;
}

.rating-score {
    margin: 0 10px;
    font-weight: 600;
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    transform: translateY(20px);
    margin: 0px 20px 0px 20px;
}

.testimonial-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-source {
    position: absolute;
    top: -15px;
    right: 20px;
}

.testimonial-source img {
    height: 30px;
    border-radius: 0;
}

.testimonial-content {
    position: relative;
    padding: 0px 35px 0px 35px;
}

.testimonial-rating {
    color: gold;
    font-size: 25px;
    margin-bottom: 15px;
}

.testimonial-content p {
    position: relative;
    padding-top: 5px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-position {
    color: var(--gray);
    font-size: 14px;
}

.review-links {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-link {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--dark);
}

.review-link img {
    height: 30px;
    margin-right: 10px;
    border-radius: 0;
}

.review-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: #476376;
}
.partners .section-header h2 {
    color: white;
}
.partners .section-header p {
    color: white;
}
.partners-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    height: 60px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.partners-tagline {
    margin-top: 30px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.partners-tagline p {
    font-style: italic;
    color: var(--gray); 
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1518105779142-d975f22f1b0a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
 
.cta-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 5px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    align-items: center;
}

.cta-badge img {
    height: 30px;
    margin-right: 10px;
    border-radius: 0;
}

.cta-badge span {
    font-weight: 600;
    color: var(--dark);
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.cta-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 0 10px 15px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.cta-stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-benefits {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    margin: 0 20px 15px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

.cta-benefit i {
    color: var(--primary);
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    background-color: var(--light);
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    background-color: var(--white);
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-content {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.faq-contact {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
}

.faq-contact h3 {
    margin-bottom: 15px;
}

.faq-contact p {
    margin-bottom: 20px;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.benefits-box {
    background-color: #80c01d;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.benefits-icon {
    margin-right: 10px;
    margin-top: 3px;
    color: white;
}

.benefits-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.quote-benefits {
    background-color: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.quote-benefits h3 {
    color: white;
    margin-bottom: 15px;
}

.quote-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.quote-benefits li i {
    margin-right: 10px;
    margin-top: 3px;
}

.contact-details {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.contact-details h3 {
    margin-bottom: 20px;
}



.office-title {
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: 600;
}

.office-info {
    margin-top: 25px;
}

.contact-link:hover {
    color: #6ba015;
    text-decoration: underline;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1em;
    font-weight: 600;
}

.contact-link {
    font-size: 18px;
    font-weight: bold;
    color: #80c01d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin: 10px 10px 10px 20px;
}

.contact-detail h4 {
    margin-bottom: 5px;
}

.contact-detail a {
    font-size: 18px;
    font-weight: bold;
}

.office-address {
    margin-top: 25px;
}

.office-address h4 {
    margin-bottom: 10px;
}

.office-description {
    color: #6c757d;
    margin: 0;
}


.office-address p {
    margin-bottom: 5px;
}


.social-link {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--dark);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}


.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #80c01d;
    box-shadow: 0 0 0 2px rgba(128, 192, 29, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-checkbox {
    margin-right: 10px;
    margin-top: 3px;
    accent-color: #80c01d;
}

.checkbox-label {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.privacy-link {
    color: #80c01d;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}


.submit-button {
    display: block;
    width: 100%;
    padding: 15px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    border: 2px solid #80c01d;
    background-color: #80c01d;
    color: white;
    font-family: inherit;
}


.submit-button:hover {
    background-color: #6ba015;
    border-color: #6ba015;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(128, 192, 29, 0.3);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}


.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.request-form {
    /* padding: 30px 25px 25px; */
}

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

.quote-form-title {
    color: white;
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
}

.quote-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #80c01d;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.quote-form-header {
    background-color: #117C9C;
    color: white;
    padding: 20px;
    border-radius: 5px 5px 0 0;
    text-align: center;
    position: relative;
}

.contact-form-container {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    background-color: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: 5px 5px 0 0;
    text-align: center;
    position: relative;
}

.response-tag {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.contact-form-header h3 {
    color: white;
    margin: 0;
}

.contact-form {
    padding: 30px 25px 25px;
}

/* Footer */
footer {
    background-color: #1f3341;
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-about p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-certificates {
    display: flex;
}

.footer-certificates img {
    height: 50px;
    margin-right: 15px;
    border-radius: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

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

.payment-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 40px;
    margin: 0 10px 10px;
    border-radius: 0;
}

.footer-bottom-info p {
    color: #ccc;
    margin-bottom: 0;
}

.footer-bottom {
    background-color: #182a36;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary);
}

/* Utility Elements */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle section animations */
.section:nth-child(odd) {
    position: relative;
    overflow: hidden;
}

.section:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.03;
    animation: float 25s infinite ease-in-out;
}

.section:nth-child(odd)::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.02;
    animation: float 20s infinite ease-in-out reverse;
}

.section:nth-child(even) {
    position: relative;
    overflow: hidden;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.02;
    animation: float 30s infinite ease-in-out;
}

.section:nth-child(even)::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.03;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(25px, 25px) rotate(5deg);
    }
    50% {
        transform: translate(0, 50px) rotate(0deg);
    }
    75% {
        transform: translate(-25px, 25px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Live Chat Element */
.live-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    width: 300px;
    z-index: 98;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.live-chat.active {
    transform: translateY(0);
    opacity: 1;
}
.routes-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.routes-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.routes-table th, 
.routes-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.routes-table th {
    background-color: var(--light);
    font-weight: 600;
    color: var(--secondary);
}

.routes-table tr:last-child td {
    border-bottom: none;
}

.routes-table tr:hover td {
    background-color: var(--light);
}

/* Destinations Section Styles */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 250px;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .destination-img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
}

.destination-overlay h3 {
    color: white;
    margin-bottom: 5px;
}

.destination-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Text Center Utility Class */
.text-center {
    text-align: center;
}

/* Margin Top Utility Class */
.mt-4 {
    margin-top: 1.5rem;
}

/* Quote Benefits Section */
.quote-benefits {
    background-color: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.quote-benefits h3 {
    color: white;
    margin-bottom: 15px;
}

.quote-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.quote-benefits li i {
    margin-right: 10px;
    margin-top: 3px;
}

/* Contact Methods */
.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-right: 15px;
}

.contact-detail h4 {
    margin-bottom: 5px;
}

.contact-detail a {
    font-size: 18px;
    font-weight: bold;
}

/* Social Links */
.social-links {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Response Tag */
.response-tag {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Service Benefits */
.service-benefits {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-benefit {
    display: flex;
    align-items: center;
}

.service-benefit img {
    height: 25px;
    margin-right: 8px;
    border-radius: 0;
}

/* Review Links */
.review-links {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-link {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.review-link img {
    height: 30px;
    margin-right: 10px;
    border-radius: 0;
}

.review-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.eco-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
}

.eco-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eco-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.eco-stat {
  text-align: center;
  padding: 15px 34px;
  background-color: rgba(128, 192, 29, 0.1);
  border-radius: 10px;
}

.eco-stat-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 5px;
}

.eco-stat-text {
  font-size: 14px;
  color: var(--dark);
}

/* Destination Cities */
.destination-cities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}

.city-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 150px;
}

.city-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 15%;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.city-item span {
  font-weight: 600;
  color: var(--secondary);
}
.ztl-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.ztl-highlight-item {
   display: flex;
    background-color: rgba(128, 192, 29, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
    flex-direction: column;
    align-items: center;
}

.ztl-highlight-item:hover {
    background-color: rgba(128, 192, 29, 0.1);
    transform: translateY(-5px);
}

.ztl-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 20px;
        margin-bottom: 15px;
}

.ztl-content h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.ztl-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.ztl-note {
    font-style: italic;
    background-color: rgba(17, 124, 156, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.partners-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partners-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo-row {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;
    gap: 55px;
}

.partner-logo-row img {
    opacity: 0.7;
    transition: var(--transition);
    border-radius: 0;
    filter: grayscale(100%);
}

.partner-logo-row img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.corporate-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
#contact {
    background-color: #e6eef6;
}
.corporate-cta h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.corporate-cta p {
    max-width: 800px;
    margin: 0 auto 20px;
}
section.eco-friendly {
    background-color: #8fcb062e;
}
/* Media Queries */
@media (max-width: 1200px) {
    .hero-grid {
        flex-direction: column;
        align-items: center;
    }
    .quality-badge svg {
        max-height: 65px;
        width: 65px;
        margin: 0 10px 0 0;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-highlights, .hero-badges {
        justify-content: center;
    }
    
    .badge-wrapper {
        position: static;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    
    .quality-badge {
        margin: 0 10px 10px;
    }
    
    .features-grid, .fleet-grid, .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 0;
    }
    .hero {
        margin-top: 58px;
    }
    .mobile-toggle {
        display: block;
        transition: all 0.3s ease;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(42, 95, 116, 0.97);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li {
        margin: 0 0 15px;
    }

    .contact-title {
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 600;
}
    
    .contact-info {
        display: none;
    }
    
    .hero-form-container {
        width: 100%;
        max-width: 400px;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
    .blockwithreviewssummary {
        display: inline-flex; 
        align-items: center; 
        background-color: white; 
        border-radius: 50px; 
        padding: 5px 20px; 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .footercolumns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 40px;
    }
    .footerallsection {
        display: grid; 
        grid-template-columns: 1.8fr 2fr 1fr; 
        gap: 40px; 
        margin-bottom: 50px;
    }

@media (max-width: 768px) {
    h1 {
        font-size: 1.7rem;
        line-height: 2rem;
    }
    .nav-links {
        background-color: rgb(42 95 116);
    }
    .quality-badge svg {
        max-height: 58px;
        width: 58px;
        margin: 0;
    }
    .nomobile {
        display: none!important;
    }
    .quality-badge img {
        height: 58px;
        margin-right: 5px;
        border-radius: 5px;
    }
    footer {
        padding: 41px 13px 100px;
    }
    .quality-badge {
        margin: 0 4px 0px;
            padding: 6px;
    }
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://bcs-bus.com/templates/bcs/images/ita1varnewland-bcsbus.webp) no-repeat center center / cover;
        padding: 100px 0 80px;
        color: var(--white);
        margin-top: 80px;
        position: relative;
    }
    .footerallsection {
        grid-template-columns: 1fr;
    }
    h2 {
        font-size: 1.8rem;
    }
    .blockwithreviewssummary { 
            font-size: 13px;
    }
    .bottomform {
            padding: 0;
    }
   
    .bottomform h3 {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }
    .hero {
        padding: 45px 0 60px;
    }
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .route-card {
        max-width: 400px;
        margin: 0 auto;
            padding: 20px 20px 7px;
    }
    .step-card {
        flex-direction: column;
    }
    .partner-logo-row {
        justify-content: center;
    }
    
.benefits-box,
    .contact-info {
        padding: 20px;
    }


    .fleet-details {
            position: relative;
    top: 220px;
    margin-left: 10px;
    }

  
    .partner-logo-row img {
        margin: 0 5px 20px;
    }

    .partner-logo-row {
    display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 26px;
}
    .step-number {
        margin: 0 0 15px;
    }
    
    .fleet-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .routes-table {
        display: block;
        overflow-x: auto;
    }
    
    .destination-card {
        height: 200px;
    }
    .ztl-highlights {
        grid-template-columns: 1fr;
    }
    .service-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .review-links {
        flex-direction: column;
        align-items: center;
    }
    
    .review-link {
        width: 100%;
        max-width: 250px;
    }
    .fleet-info {
        display: flex;
    flex-direction: column;
    }
    .steps-grid {
            gap: 15px;
    }
    .fleet-specs {
        grid-template-columns: 1fr;
    }
    .eco-stat-number {
        margin-bottom: 0;
    }
    .popular-routes {
        padding: 15px;
    }
    .fleet-feature-list {
        grid-template-columns: 1fr;
        /* margin-bottom: 115px; */
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .eco-content {
        grid-template-columns: 1fr;
    }
    
    .eco-stats {
        flex-direction: column;
        gap: 15px;
    }

    .accordion-header {
    background-color: var(--white);
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    .btn {
        padding: 9px 16px;
        font-size: 13px;
    }
    h3 {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
    .hero-badges {
        align-items: flex-start;
        gap: 20px;
        margin-top: 7px;
    }
    .hero-highlights {
        align-items: flex-start;
         gap: 0px;
    }
    .hero-content {
                margin-bottom: 0;
    }
    .fleet-details {
        position: relative;
        top: 0;
        margin-left: 0;
    }
    .fleet-img {
        height: auto;
    }
    .hero-badge, .highlight-item {
        margin-right: 0;
    }
    .hero-form-header {
            padding: 7px;
    }
    h2 {
        font-size: 1.6rem;
        line-height: 1.9rem;
    }
    .feature-icon {
        width: 51px;
        height: 51px;
        margin: 0;
        font-size: 21px;
    }
    .partner-logo-row {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    .partner-logo-row img {
        margin: 0px 4px 9px;
        max-height: 41px;
    }
    .partners-logos {
        gap: 15px;
        margin-bottom: 10px;
    }
    .section-header {
            margin-bottom: 22px;
    }
    .features-grid {
            gap: 12px;
    }
    .fleet-img img {
        height: 80%;
    }
    .form-check {
            margin-bottom: 7px;
    }
    .features-grid, .steps-grid, .fleet-grid, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card, .step-card, .fleet-card, .service-card, .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partner-logo {
        margin: 0 15px 20px;
    }
    
    .payment-options, .fleet-benefits, .service-benefits, .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-option, .fleet-benefit, .service-benefit, .cta-benefit {
        margin: 0 0 15px;
    }
    
    .whatsapp-btn, .scroll-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .live-chat {
        width: 90%;
        max-width: 300px;
        right: 5%;
    }
    .routes-table th,
    .routes-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .quote-benefits {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-detail a {
        font-size: 16px;
    }
}

.destination-cities {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.bus-city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 140px;
    transition: all 0.3s ease;
}

.bus-city-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8BC34A, #689F38);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bus-city-icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
    background: linear-gradient(135deg, #9CCC65, #7CB342);
}

.bus-city-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.bus-city-name {
    color: rgba(42, 95, 116, 0.95);
    font-weight: bold;
    font-size: 14px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .destination-cities {
        gap: 30px;
    }
    
    .bus-city-icon-wrapper {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .bus-city-icon {
        width: 40px;
        height: 40px;
    }
    
    .bus-city-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .destination-cities {
        gap: 15px;
    }
    
    .bus-city-card {
        max-width: 120px;
    }
}


a[href*="facebook.com"]:hover,
a[href*="instagram.com"]:hover,
a[href*="linkedin.com"]:hover,
a[href*="youtube.com"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

a[href*="tripadvisor.com"]:hover,
a[href*="facebook.com"]:hover,
a[href*="google.com/maps"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}