/*
Theme Name: Car Rental Theme
Author: Rayen
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}
.site-header {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.main-header {
    position: relative;
    z-index: 9999;
    height: 115px;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: #111827;
}
.logo img {
    width: 180px;
    height: auto;
    display: block;
}
.main-menu {
    flex: 1;
}
.main-menu ul,
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0;
    margin: 0;
}
.main-menu ul li a,
.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    padding: 10px 0;
    position: relative;
    transition: color .25s ease;
}
.main-menu ul li a::after,
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: #3B82F6;
    transition: width .25s ease;
}
.main-menu ul li a:hover,
.nav-menu li a:hover {
    color: #3B82F6;
}
.main-menu ul li a:hover::after,
.nav-menu li a:hover::after {
    width: 100%;
}
.phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    white-space: nowrap;
}
.phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59,130,246,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.phone-box p {
    font-size: 12px;
    margin-bottom: 3px;
    color: #cbd5e1;
}
.phone-box strong {
    font-size: 15px;
    color: #ffffff;
}
.find-car-btn {
    background: #3B82F6;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 10px;
    font-weight: 800;
    white-space: nowrap;
    transition: .25s ease;
}
.find-car-btn:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
}
.mobile-menu-toggle,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 992px) {.main-header {
    padding: 18px;
}
.phone-box,
    .find-car-btn {
    display: none;
}

}

@media (max-width: 768px) {.main-header {
    height: 88px;
    padding: 0 20px;
}
.logo {
    margin-left: 65px;
    z-index: 100002;
}
.logo img {
    width: 90px;
}
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    z-index: 100003;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 999px;
    transition: .35s ease;
    margin: 0 auto;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 100000;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.main-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: #071f3f;
    padding: 115px 30px 30px;
    transition: left .4s ease;
    z-index: 100001;
}
.main-menu.is-open {
    left: 0;
}
.main-menu ul,
    .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}
.main-menu ul li,
    .nav-menu li {
    width: 100%;
}
.main-menu ul li a,
    .nav-menu li a {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-align: left;
    line-height: 1.3;
}

}.reservation-section {
    background: #f4f7fb;
    padding: 60px 20px;
    text-align: center;
}
.reservation-section h1 {
    color: #0b2c66;
    font-size: 38px;
    margin-bottom: 35px;
}
.reservation-box {
    max-width: 950px;
    margin: auto;
    background: #0b5795;
    padding: 25px;
    text-align: left;
}
.reservation-box h2 {
    color: white;
    margin-bottom: 20px;
}
.reservation-form {
    display: flex;
    gap: 15px;
    align-items: end;
}
.form-group {
    flex: 1;
    background: white;
    padding: 12px;
}
.form-group label {
    display: block;
    color: #0b2c66;
    font-weight: bold;
    margin-bottom: 8px;
}
.form-group input {
    width: 100%;
    border: none;
    font-size: 16px;
    outline: none;
}
.reservation-form button {
    background: #ff3325;
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.reservation-form button:hover {
    background: #d9271d;
}
.site-footer {
    padding: 25px 40px;
    background: #111;
    color: white;
    text-align: center;
    margin-top: 60px;
}
.vehicles-page {
    background: #f5f7fb;
}
.vehicles-hero {
    padding: 80px 20px;
    text-align: center;
    background: #0d1735;
    color: white;
}
.vehicles-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}
.vehicles-layout {
    max-width: 1400px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.vehicles-filters {
    width: 285px;
    background: #233d74;
    color: white;
    flex-shrink: 0;
}
.vehicles-filters h2 {
    font-size: 24px;
    font-weight: 800;
    padding: 24px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
.filter-group {
    padding: 26px 28px 0;
}
.filter-group h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 22px;
    text-transform: uppercase;
    color: white;
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}
.filter-group input[type="radio"] {
    appearance: none;
    width: 27px;
    height: 27px;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}
.filter-group input[type="radio"]:checked {
    background: #ff3325;
    box-shadow: inset 0 0 0 5px #233d74;
}
.filter-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    outline: none;
    font-size: 15px;
}
.filter-group input[type="number"]::placeholder {
    color: rgba(255,255,255,0.75);
}
.filter-button {
    width: calc(100% - 56px);
    margin: 25px 28px 12px;
    padding: 14px;
    background: #ff3325;
    color: white;
    border: none;
    font-weight: 800;
    cursor: pointer;
}
.reset-button {
    display: block;
    margin: 0 28px 25px;
    color: white;
    text-align: center;
    text-decoration: underline;
    font-weight: 600;
}
.vehicles-list {
    flex: 1;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.vehicle-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.vehicle-card:hover {
    transform: translateY(-6px);
}
.vehicle-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.vehicle-info {
    padding: 22px;
}
.vehicle-info h2 {
    color: #0d1735;
    font-size: 22px;
    margin-bottom: 15px;
}
.vehicle-details {
    display: grid;
    gap: 8px;
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}
.vehicle-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vehicle-bottom strong {
    color: #ff3325;
    font-size: 18px;
}
.vehicle-bottom a {
    background: #ff3325;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
}
.vehicle-bottom a:hover {
    background: #d9271d;
}

@media (max-width: 1000px) {.main-header {
    height: auto;
    padding: 25px;
    flex-wrap: wrap;
}
.main-menu {
    order: 3;
    width: 100%;
}
.main-menu ul {
    justify-content: center;
    flex-wrap: wrap;
}
.phone-box,
    .find-car-btn {
    margin-left: auto;
}

}

@media (max-width: 900px) {.vehicles-layout {
    flex-direction: column;
}
.vehicles-filters {
    width: 100%;
}
.vehicles-list {
    grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 700px) {.site-header {
    height: auto;
    min-height: 520px;
}
.main-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}
.main-menu ul {
    flex-direction: column;
    gap: 18px;
}
.phone-box {
    margin-left: 0;
}
.reservation-form {
    flex-direction: column;
}
.reservation-form button {
    width: 100%;
}
.vehicles-list {
    grid-template-columns: 1fr;
}

}.vehicles-filters {
    width: 285px;
    background: #243e73;
    color: #fff;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
}
.vehicles-filters h2 {
    font-size: 23px;
    font-weight: 900;
    padding: 24px 15px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.22);
}
.filter-group {
    padding: 28px 28px 0;
    margin: 0;
}
.filter-group h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 22px;
    text-transform: uppercase;
    color: #fff;
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.filter-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 27px;
    height: 27px;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 0;
    position: relative;
}
.filter-group input[type="checkbox"]:checked {
    background: #ff3325;
}
.filter-group input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    left: 5px;
    top: 0;
}
.filter-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    outline: none;
    font-size: 15px;
}
.filter-button {
    display: none;
}
.reset-button {
    display: block;
    margin: 25px 28px;
    color: #fff;
    text-align: center;
    text-decoration: underline;
    font-weight: 700;
}
.vehicles-layout {
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding: 60px 12px !important;
    display: flex !important;
    gap: 35px !important;
    align-items: flex-start !important;
}
.vehicles-filters {
    width: 285px !important;
    margin-left: 0 !important;
}
.vehicles-list {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 1100px) {.vehicles-layout {
    padding: 40px 15px !important;
    gap: 25px !important;
}
.vehicles-list {
    grid-template-columns: repeat(2, 1fr) !important;
}

}

@media (max-width: 768px) {.vehicles-layout {
    flex-direction: column !important;
    padding: 30px 15px !important;
    gap: 25px !important;
}
.vehicles-filters {
    width: 100% !important;
}
.vehicles-filters h2 {
    font-size: 22px !important;
    padding: 20px !important;
}
.filter-group {
    padding: 22px 20px 0 !important;
}
.filter-group label {
    font-size: 15px !important;
    margin-bottom: 14px !important;
}
.vehicles-list {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
}
.vehicle-card {
    width: 100% !important;
}
.vehicle-image img {
    height: 210px !important;
}
.vehicle-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
}
.vehicle-bottom a {
    width: 100% !important;
    text-align: center !important;
}

}.car-details-page {
    background: #f5f7fb;
    padding: 70px 20px;
}
.car-details-container {
    max-width: 1200px;
    margin: auto;
    background: white;
    border-radius: 18px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.car-details-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}
.car-details-info h1 {
    font-size: 42px;
    color: #0d1735;
    margin-bottom: 15px;
}
.car-details-price {
    font-size: 26px;
    font-weight: 800;
    color: #ff3325;
    margin-bottom: 25px;
}
.car-details-info ul {
    list-style: none;
    margin-bottom: 30px;
}
.car-details-info li {
    font-size: 18px;
    margin-bottom: 14px;
    color: #333;
}
.car-details-btn {
    display: inline-block;
    background: #ff3325;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    margin-right: 15px;
}
.car-details-back {
    color: #0d1735;
    font-weight: 700;
}

@media (max-width: 768px) {.car-details-container {
    grid-template-columns: 1fr;
    padding: 20px;
}
.car-details-image img {
    height: 260px;
}
.car-details-info h1 {
    font-size: 30px;
}
.car-details-btn,
    .car-details-back {
    display: block;
    text-align: center;
    margin: 12px 0;
}

}.booking-page {
    background: #f4f7fb;
    padding: 60px 20px;
}
.booking-car-card {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.booking-car-image img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    background: white;
}
.booking-car-info h1 {
    font-size: 42px;
    color: #102b5c;
    margin-bottom: 20px;
}
.booking-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #263858;
    font-size: 18px;
    margin-bottom: 25px;
}
.booking-price {
    display: block;
    color: #ff3325;
    font-size: 34px;
}
.booking-form-box {
    max-width: 1200px;
    margin: auto;
    background: white;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.booking-form h2 {
    color: #102b5c;
    font-size: 28px;
    margin-bottom: 25px;
}
.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
    margin-bottom: 35px;
}
.booking-field label {
    display: block;
    color: #102b5c;
    font-weight: 800;
    margin-bottom: 10px;
}
.booking-field input {
    width: 100%;
    height: 58px;
    border: 1px solid #b9c3d4;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}
.booking-field input:focus {
    border-color: #102b5c;
}
.phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #b9c3d4;
    border-radius: 6px;
    height: 58px;
    overflow: hidden;
}
.phone-field span {
    padding: 0 15px;
    border-right: 1px solid #d4dae5;
    color: #102b5c;
    font-weight: 700;
}
.phone-field input {
    border: none;
    height: 100%;
}
.booking-form hr {
    border: none;
    height: 1px;
    background: #e2e6ef;
    margin: 10px 0 30px;
}
.booking-option {
    height: 65px;
    border: 1px solid #e2e6ef;
    border-radius: 6px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
    color: #102b5c;
}
.booking-option span {
    font-weight: 800;
}
.switch input {
    display: none;
}
.switch span {
    width: 54px;
    height: 28px;
    background: #c5c8ce;
    border-radius: 20px;
    display: block;
    position: relative;
    cursor: pointer;
}
.switch span::before {
    content: "";
    width: 24px;
    height: 24px;
    background: white;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    transition: 0.3s;
}
.switch input:checked + span {
    background: #102b5c;
}
.switch input:checked + span::before {
    left: 28px;
}
.caution-box {
    background: #eaf1fb;
    border: 1px solid #b9c9df;
    border-radius: 6px;
    color: #102b5c;
    padding: 18px;
    margin-bottom: 20px;
    font-size: 17px;
}
.caution-row {
    border: 1px solid #e2e6ef;
    border-radius: 6px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    color: #102b5c;
    margin-bottom: 30px;
    font-size: 17px;
}
.booking-submit {
    width: 100%;
    height: 58px;
    border: none;
    background: #102b5c;
    color: white;
    font-size: 18px;
    font-weight: 900;
    border-radius: 6px;
    cursor: pointer;
}
.booking-submit:hover {
    background: #0b1f45;
}
.booking-message {
    max-width: 1200px;
    margin: 0 auto 25px;
    padding: 18px;
    border-radius: 6px;
    font-weight: 700;
}
.booking-message.success {
    background: #d9f8e5;
    color: #0d7a38;
}
.booking-message.error {
    background: #ffe1e1;
    color: #c40000;
}

@media (max-width: 900px) {.booking-car-card {
    grid-template-columns: 1fr;
}
.booking-grid {
    grid-template-columns: 1fr;
}
.booking-car-info h1 {
    font-size: 32px;
}
.booking-price {
    font-size: 28px;
}

}

@media (max-width: 600px) {.booking-page {
    padding: 30px 12px;
}
.booking-form-box {
    padding: 22px;
}
.booking-car-card {
    padding: 18px;
}
.booking-car-image img {
    height: 220px;
}
.booking-car-specs {
    flex-direction: column;
    gap: 10px;
}
.booking-option {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
    padding: 18px;
}
.caution-row {
    flex-direction: column;
    gap: 10px;
}

}.total-price-box {
    border: 1px solid #e2e6ef !important;
    border-radius: 8px !important;
    margin: 25px 0 30px !important;
    overflow: hidden !important;
    background: white !important;
}
.total-price-box div {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 18px !important;
    border-bottom: 1px solid #e2e6ef !important;
    color: #102b5c !important;
}
.total-price-box div:last-child {
    border-bottom: none !important;
}
.total-price-box span {
    font-weight: 700 !important;
}
.total-price-box strong {
    font-size: 18px !important;
}
.total-price-box .total-final {
    background: #102b5c !important;
    color: white !important;
}
.total-price-box .total-final span,
.total-price-box .total-final strong {
    color: white !important;
}
.total-price-box .total-final strong {
    font-size: 24px !important;
}
.gender-field {
    margin-bottom: 30px !important;
    display: flex !important;
    gap: 25px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}
.gender-title {
    width: 100% !important;
    color: #102b5c !important;
    font-weight: 800 !important;
}
.gender-field label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #102b5c !important;
    font-weight: 700 !important;
}
.gender-field input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
}
.phone-field select {
    width: 180px !important;
    height: 100% !important;
    border: none !important;
    border-right: 1px solid #d4dae5 !important;
    padding: 0 10px !important;
    color: #102b5c !important;
    font-weight: 700 !important;
    background: white !important;
}
.booking-field select {
    width: 100% !important;
    height: 58px !important;
    border: 1px solid #b9c3d4 !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
    color: #102b5c !important;
    background: white !important;
}
.phone-field input {
    flex: 1 !important;
}

@media (max-width: 600px) {.phone-field {
    flex-direction: column !important;
    height: auto !important;
}
.phone-field select,
    .phone-field input {
    width: 100% !important;
    height: 55px !important;
    border-right: none !important;
}
.phone-field select {
    border-bottom: 1px solid #d4dae5 !important;
}

}body .phone-field {
    display: grid !important;
    grid-template-columns: 190px 1fr !important;
    height: 58px !important;
    border: 1px solid #b9c3d4 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #fff !important;
}
body .phone-field select {
    width: 100% !important;
    height: 58px !important;
    border: none !important;
    border-right: 1px solid #d4dae5 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #102b5c !important;
    font-weight: 700 !important;
    padding: 0 10px !important;
}
body .phone-field input[type="tel"] {
    width: 100% !important;
    height: 58px !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
    font-size: 16px !important;
    background: #fff !important;
}
body .booking-field select {
    width: 100% !important;
    height: 58px !important;
    border: 1px solid #b9c3d4 !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
    color: #102b5c !important;
    background: #fff !important;
}

@media (max-width: 600px) {body .phone-field {
    grid-template-columns: 1fr !important;
    height: auto !important;
}
body .phone-field select,
    body .phone-field input[type="tel"] {
    height: 55px !important;
    border-right: none !important;
}
body .phone-field select {
    border-bottom: 1px solid #d4dae5 !important;
}

}.custom-phone-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #b9c3d4;
    border-radius: 6px;
    overflow: visible;
    position: relative;
    background: white;
    height: 58px;
}
.country-selector {
    position: relative;
    width: 170px;
    height: 100%;
    border-right: 1px solid #d4dae5;
}
.selected-country {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    cursor: pointer;
    background: white;
}
.selected-country img {
    width: 26px;
    height: 18px;
    object-fit: cover;
}
.selected-country span {
    color: #102b5c;
    font-weight: 700;
}
.country-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    width: 260px;
    max-height: 280px;
    overflow-y: auto;
    background: white;
    border: 1px solid #d4dae5;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
}
.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: 0.2s;
}
.country-option:hover {
    background: #f3f6fb;
}
.country-option img {
    width: 26px;
    height: 18px;
    object-fit: cover;
}
.custom-phone-wrapper input[type="tel"] {
    flex: 1;
    border: none;
    height: 100%;
    padding: 0 16px;
    font-size: 16px;
    background: white;
}
.custom-phone-wrapper input[type="tel"]:focus {
    outline: none;
}

@media (max-width: 600px) {.custom-phone-wrapper {
    flex-direction: column;
    height: auto;
}
.country-selector {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d4dae5;
}
.custom-phone-wrapper input[type="tel"] {
    width: 100%;
    height: 55px;
}

}.vehicle-card {
    position: relative !important;
}
.availability-message {
    margin: 20px 0 !important;
    padding: 16px 18px !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
}
.availability-message.available {
    background: #e3f9ea !important;
    color: #0b7a33 !important;
    border: 1px solid #a8e6bd !important;
}
.availability-message.unavailable {
    background: #ffe8e8 !important;
    color: #b00000 !important;
    border: 1px solid #ffb5b5 !important;
}
.car-top-message {
    margin-top: 30px !important;
    max-width: 430px !important;
}
.availability-message {
    display: none;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
}
.availability-message.available,
.availability-message.unavailable {
    display: block !important;
}
.booking-colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin: 15px 0 25px;
}
.booking-color-option {
    border: 1px solid #dce4f2;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #fff;
}
.booking-color-option input {
    display: none;
}
.booking-color-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #999;
    flex-shrink: 0;
}
.booking-color-option:has(input:checked) {
    border-color: #003b7a;
    box-shadow: 0 0 0 2px rgba(0, 59, 122, 0.15);
}
.color-error-message {
    display: none;
    background: #ffe5e5;
    color: #c62828;
    border: 1px solid #ef9a9a;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}
.booking-color-option input[disabled] {
    pointer-events: none;
}
.disabled-color {
    opacity: 0.45;
    cursor: not-allowed;
}
.booking-color-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.color-unavailable {
    color: #d63638;
    font-weight: 600;
}
.color-available {
    color: #1a7f37;
    font-weight: 600;
}
.recommendation-page {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
}
.recommendation-page .container {
    max-width: 1150px;
    margin: auto;
}
.recommendation-hero {
    text-align: center;
    margin-bottom: 40px;
}
.recommendation-hero span {
    color: #0b5ed7;
    font-weight: 700;
    text-transform: uppercase;
}
.recommendation-hero h1 {
    font-size: 42px;
    color: #0b2b52;
    margin: 12px 0;
}
.recommendation-hero p {
    color: #5b6b7d;
    font-size: 18px;
}
.recommendation-form {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.recommendation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.recommendation-form label {
    font-weight: 700;
    color: #0b2b52;
}
.recommendation-form input,
.recommendation-form select {
    padding: 14px;
    border: 1px solid #dce4f2;
    border-radius: 14px;
}
.recommend-btn {
    grid-column: span 2;
    background: #0b2b52;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
}
.recommended-results {
    margin-top: 55px;
}
.recommended-results h2 {
    margin-bottom: 25px;
    color: #0b2b52;
}
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.recommend-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.recommend-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.recommend-card-body {
    padding: 22px;
}
.recommend-card h3 {
    margin: 0 0 8px;
    color: #0b2b52;
}
.recommend-specs {
    color: #6b7b8c;
    margin-bottom: 12px;
}
.recommend-price {
    display: block;
    margin-bottom: 18px;
    color: #0b5ed7;
}
.recommend-card h4 {
    margin-bottom: 10px;
}
.recommend-reasons {
    padding-left: 0;
    list-style: none;
    color: #2f4858;
    font-size: 14px;
}
.recommend-reasons li {
    margin-bottom: 7px;
}
.recommend-card a {
    display: inline-block;
    margin-top: 12px;
    background: #0b2b52;
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
}
.recommend-empty {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    padding: 18px;
    border-radius: 14px;
}

@media (max-width: 768px) {.recommendation-form,
    .cars-grid {
    grid-template-columns: 1fr;
}
.recommend-btn {
    grid-column: span 1;
}
.recommendation-hero h1 {
    font-size: 30px;
}

}.best-match-card {
    border: 3px solid #0b5ed7;
    position: relative;
    transform: scale(1.03);
}
.best-match-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #0b5ed7;
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}
.match-score {
    display: inline-block;
    background: #e8f1ff;
    color: #0b5ed7;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 10px;
}
.smart-recommendation-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #071f3f, #0b5ed7);
    color: white;
    text-align: center;
}
.smart-cta-content {
    max-width: 850px;
    margin: auto;
}
.smart-cta-content span {
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ec5fe;
}
.smart-cta-content h2 {
    font-size: 40px;
    margin-bottom: 18px;
}
.smart-cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.smart-cta-content a {
    display: inline-block;
    background: white;
    color: #0b2b52;
    padding: 15px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
}
.vehicles-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.vehicles-filters {
    width: 280px;
    flex-shrink: 0;
}
.vehicles-list {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.vehicles-smart-banner {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #eef5ff;
    border: 1px solid #cfe2ff;
    border-radius: 18px;
}
.vehicles-smart-banner h2 {
    margin: 0 0 8px;
    color: #0b2b52;
}
.vehicles-smart-banner p {
    margin: 0;
    color: #5b6b7d;
}
.vehicles-smart-banner a {
    background: #0b2b52;
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 992px) {
.vehicles-smart-banner {
    flex-direction: column;
    align-items: flex-start;
}

}.recommendation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}
.recommendation-steps div {
    background: white;
    border: 1px solid #dce4f2;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.recommendation-steps strong {
    background: #0b2b52;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.recommendation-steps span {
    font-weight: 700;
    color: #0b2b52;
}
.match-score-wrapper {
    margin: 12px 0 18px;
}
.match-score-text {
    font-weight: 700;
    color: #0b2b52;
    margin-bottom: 8px;
}
.match-score-bar {
    width: 100%;
    height: 10px;
    background: #dbe7ff;
    border-radius: 999px;
    overflow: hidden;
}
.match-score-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b5ed7, #4ea3ff);
    animation: fillMatchBar 1.4s ease forwards;
}

@keyframes fillMatchBar {
    from {
        width: 0;
    }
}.recommend-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}
.recommended-badge-details {
    max-width: 1100px;
    margin: 25px auto 15px;
    background: #e8f1ff;
    color: #0b5ed7;
    border: 1px solid #b6d4fe;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 800;
}
.site-footer {
    background: #111827;
    color: white;
    padding: 55px 20px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
    color: white;
}
.footer-column p,
.footer-column a {
    display: block;
    color: #cfe2ff;
    margin-bottom: 10px;
    text-decoration: none;
}
.footer-column a:hover {
    color: white;
}
.footer-bottom {
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    color: #cfe2ff;
}

@media (max-width: 768px) {.footer-container {
    grid-template-columns: 1fr;
}

}.tracking-page {
    min-height: 70vh;
    padding: 90px 20px;
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
}
.tracking-box {
    max-width: 650px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.tracking-box h1 {
    color: #0b2b52;
    margin-bottom: 10px;
}
.tracking-box p {
    color: #5b6b7d;
    margin-bottom: 25px;
}
.tracking-form {
    display: grid;
    gap: 15px;
}
.tracking-form input {
    padding: 14px;
    border: 1px solid #dce4f2;
    border-radius: 12px;
}
.tracking-form button {
    background: #0b2b52;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}
.tracking-error {
    margin-top: 20px;
    background: #ffe5e5;
    color: #b42318;
    padding: 14px;
    border-radius: 12px;
}
.tracking-result {
    margin-top: 25px;
    border-top: 1px solid #e5eaf2;
    padding-top: 20px;
}
.tracking-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}
.tracking-row span {
    color: #5b6b7d;
}
.tracking-row strong {
    color: #0b2b52;
}
.reservation-summary-card {
    background: #f8fbff;
    border: 1px solid #dce8f8;
    border-radius: 18px;
    padding: 24px;
    margin: 25px 0;
}
.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5eef8;
}
.summary-total {
    border-bottom: none;
    font-size: 18px;
    color: #0b2b52;
}
.booking-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}
.booking-success-card {
    max-width: 850px;
    margin: 30px auto;
    background: #eafaf1;
    border: 1px solid #b7e4c7;
    border-radius: 18px;
    padding: 28px;
    color: #0f5132;
}
.booking-success-card h2 {
    margin-top: 0;
}
.booking-success-card strong {
    color: #0b2b52;
}
.booking-success-actions {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.booking-success-actions a {
    background: #0b2b52;
    color: #fff;
    padding: 13px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}
.reservation-success-page {
    min-height: 70vh;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reservation-success-box {
    max-width: 720px;
    background: white;
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.success-icon {
    font-size: 56px;
    margin-bottom: 15px;
}
.reservation-success-box h1 {
    color: #0b2b52;
    margin-bottom: 15px;
}
.success-code {
    background: #e8f1ff;
    padding: 14px;
    border-radius: 14px;
    color: #0b2b52;
}
.success-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.success-actions a {
    background: #0b2b52;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 992px) {.main-header {
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px;
}
.main-menu {
    width: 100%;
    order: 3;
}
.main-menu ul,
    .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 0;
}
.booking-grid,
    .recommendation-form,
    .cars-grid,
    .footer-container {
    grid-template-columns: 1fr !important;
}
.booking-car-card,
    .vehicles-layout {
    flex-direction: column;
}
.vehicles-filters,
    .vehicles-list {
    width: 100%;
}

}
@media (max-width: 700px) {.site-header {
    min-height: 430px !important;
    height: auto !important;
}
.main-header {
    padding-top: 20px !important;
}
.main-menu ul {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
}
.main-menu ul li a {
    font-size: 14px !important;
}
.logo img {
    width: 85px !important;
}

}
@media (max-width: 600px) {h1 {
    font-size: 30px !important;
}
h2 {
    font-size: 24px !important;
}
.booking-form-box,
    .tracking-box,
    .reservation-success-box,
    .recommendation-form {
    padding: 22px !important;
    border-radius: 16px;
}
.vehicle-card {
    flex-direction: column;
}
.vehicle-image img {
    width: 100%;
    height: auto;
}
.summary-row,
    .summary-total,
    .tracking-row {
    flex-direction: column;
    gap: 5px;
}
.success-actions,
    .booking-success-actions {
    flex-direction: column;
}
.success-actions a,
    .booking-success-actions a {
    width: 100%;
    text-align: center;
}

}

@media (max-width: 768px) {.site-header {
    height: 360px !important;
    min-height: 360px !important;
}
.main-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 60px;
}
.main-menu {
    margin-left:auto;
    margin-right:auto;
}
.logo {
    margin-left: 70px !important;
    z-index: 100002 !important;
}
.logo img {
    width: 90px !important;
}
.mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 6px !important;
    position: fixed !important;
    top: 22px !important;
    left: 22px !important;
    width: 52px !important;
    height: 52px !important;
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(8px);
    border: none !important;
    border-radius: 12px !important;
    z-index: 100003 !important;
    cursor: pointer !important;
}
.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition: 0.35s ease;
    margin: 0 auto;
}
.mobile-menu-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.45) !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 100000 !important;
}
.main-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 85% !important;
    height: 100vh !important;
    background: #071f3f !important;
    padding: 115px 30px 30px !important;
    transition: left 0.4s ease !important;
    z-index: 100001 !important;
}
.main-menu.is-open {
    left: 0 !important;
}
.main-menu ul,
    .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 26px !important;
    padding: 0 !important;
}
.main-menu ul li a,
    .nav-menu li a {
    color: white !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}
.phone-box,
    .find-car-btn {
    display: none !important;
}

}

@media (max-width: 768px) {.main-menu ul li {
    width: 100%;
}
.main-menu ul li a {
    display: block;
    text-align: left !important;
    line-height: 1.3;
}

}.flatpickr-input[readonly],
input[readonly],
.custom-flatpickr {
    cursor: pointer !important;
    user-select: none !important;
}
.custom-flatpickr {
    width: 100% !important;
    height: 58px !important;
    border: 1px solid #b9c3d4 !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
    color: #102b5c !important;
    background: white !important;
    background-image: none !important;
}
.custom-flatpickr::placeholder {
    color: #102b5c !important;
    opacity: 1 !important;
}
#pickupDate,
#returnDate,
.custom-flatpickr {
    width: 100% !important;
    height: 58px !important;
    border: 1px solid #b9c3d4 !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
    color: #102b5c !important;
    background: white !important;
    cursor: pointer !important;
}
#pickupDate::placeholder,
#returnDate::placeholder,
.custom-flatpickr::placeholder {
    color: #102b5c !important;
    opacity: 1 !important;
}
.status-pending,
.status-confirmed,
.status-cancelled,
.status-finished {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}
.status-pending {
    background: #fff3cd;
    color: #856404;
}
.status-confirmed {
    background: #d1e7dd;
    color: #0f5132;
}
.status-cancelled {
    background: #f8d7da;
    color: #842029;
}
.status-finished {
    background: #e2e3e5;
    color: #41464b;
}
.homepage-featured-cars {
    padding: 90px 7%;
    background: #f7f9fc;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title span {
    color: #0f3d91;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #0b2b52;
}
.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}
.featured-cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.featured-car-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.featured-car-card:hover {
    transform: translateY(-8px);
}
.featured-car-image {
    height: 230px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.featured-car-image img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}
.featured-car-content {
    padding: 25px;
}
.featured-car-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #0b2b52;
}
.featured-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}
.featured-car-specs span {
    background: #f2f5fa;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
}
.featured-car-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.featured-car-bottom strong {
    color: #ff3b30;
    font-size: 24px;
}
.featured-car-bottom a {
    background: #0b2b52;
    color: white;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}
.featured-car-bottom a:hover {
    background: #ff3b30;
}

@media (max-width: 768px) {.homepage-featured-cars {
    padding: 70px 20px;
}
.section-title h2 {
    font-size: 32px;
}
.featured-car-content h3 {
    font-size: 24px;
}
.featured-car-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

}.home-offers-section {
    padding: 100px 7%;
    background: linear-gradient(135deg, #081b36, #0b2b52);
    color: white;
    position: relative;
    overflow: hidden;
}
.home-offers-container {
    max-width: 1400px;
    margin: auto;
}
.home-offers-title {
    text-align: center;
    margin-bottom: 60px;
}
.home-offers-title span {
    color: #4da3ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.home-offers-title h2 {
    font-size: 44px;
    margin: 15px 0;
    color: white;
}
.home-offers-title p {
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}
.home-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.home-offer-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 35px 30px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}
.home-offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(77,163,255,0.35);
}
.offer-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(77,163,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}
.home-offer-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}
.home-offer-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

@media (max-width: 768px) {.home-offers-section {
    padding: 70px 20px;
}
.home-offers-title h2 {
    font-size: 34px;
}
.home-offer-card {
    padding: 28px 24px;
}

}.car-long-discount {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9f9ef;
    color: #1e9e52;
    border: 1px solid #b9e7c8;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}
#summaryTotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
#summaryTotal span:first-child {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 14px;
}
#summaryTotal span:last-child {
    color: #0b2b52;
    font-size: 18px;
    font-weight: 900;
}
.why-trioplus-section {
    padding: 100px 7%;
    background: #f7f9fc;
}
.why-trioplus-container {
    max-width: 1400px;
    margin: auto;
}
.why-trioplus-title {
    text-align: center;
    margin-bottom: 60px;
}
.why-trioplus-title span {
    color: #0f3d91;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.why-trioplus-title h2 {
    font-size: 42px;
    color: #0b2b52;
    margin: 15px 0;
}
.why-trioplus-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}
.why-trioplus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.why-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
}
.why-card:hover {
    transform: translateY(-10px);
}
.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 22px;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.why-card h3 {
    font-size: 24px;
    color: #0b2b52;
    margin-bottom: 15px;
}
.why-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {.why-trioplus-section {
    padding: 70px 20px;
}
.why-trioplus-title h2 {
    font-size: 32px;
}
.why-card {
    padding: 28px 24px;
}

}.booking-steps-section {
    padding: 120px 7%;
    background: linear-gradient(135deg, #081b36, #0b2b52);
    color: white;
    overflow: hidden;
}
.booking-steps-container {
    max-width: 1400px;
    margin: auto;
}
.booking-steps-title {
    text-align: center;
    margin-bottom: 90px;
}
.booking-steps-title span {
    color: #4da3ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.booking-steps-title h2 {
    font-size: 44px;
    margin: 15px 0;
    color: white;
}
.booking-steps-title p {
    color: rgba(255,255,255,0.72);
}
.booking-process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.booking-process-line::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 1;
}
.booking-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}
.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1b4fa3;
    border: 6px solid #0b2b52;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.booking-process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}
.booking-process-step p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 260px;
    margin: auto;
}

@media (max-width: 992px) {.booking-process-line {
    grid-template-columns: 1fr;
    gap: 60px;
}
.booking-process-line::before {
    display: none;
}

}.about-classic-section {
    max-width:1400px;
    margin:80px auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}
.about-classic-image img {
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
}
.about-classic-hero {
    background: linear-gradient(
        135deg,
        #081326,
        #0F274D
    );
    color:white;
    text-align:center;
    padding:100px 20px;
}
.about-classic-hero h1 {
    font-size:56px;
    font-weight:800;
    margin-bottom:15px;
}
.about-classic-hero p {
    font-size:18px;
    opacity:.85;
}
.about-classic-text h2 {
    font-size:42px;
    color:#0F172A;
    margin-bottom:25px;
}
.about-classic-text p {
    font-size:18px;
    line-height:1.9;
    color:#475569;
    margin-bottom:20px;
}
.about-features {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}
.about-features div {
    background: #F8FAFC;
    padding: 14px 18px;
    border-left: 4px solid #D97706;
    border-radius: 10px;
    color: #111827;
    font-weight: 700;
}
.about-classic-page {
    background: #fff;
}
.about-classic-section {
    margin-bottom: 120px !important;
}
.about-classic-section.reverse {
    margin-top: 40px;
}
.about-classic-section {
    max-width: 1350px;
}
.about-classic-text p {
    text-align: justify;
}
.about-features {
    display: none !important;
}
.about-natural-list {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}
.about-natural-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #111827;
    font-size: 16px;
    line-height: 1.7;
}
.about-natural-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #D97706;
    font-weight: 900;
}
.hero-home-clean {
    position:absolute;
    bottom:80px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}
.hero-main-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    background:#3B82F6;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(59,130,246,.25);
}
.hero-main-btn:hover {
    background:#1E3A8A;
    transform:translateY(-3px);
}
.hero-home-clean {
    position:absolute;
    left:100px;
    bottom:90px;
    z-index:999;
}
.hero-main-btn {
    display:inline-block;
    padding:18px 40px;
    background:#3B82F6;
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    border-radius:50px;
    transition:.3s;
    animation:pulseBtn 2s infinite;
}
.hero-main-btn:hover {
    background:#1E3A8A;
    transform:translateY(-4px);
}


.home-trust-section {
    background:#ffffff;
    padding:110px 7%;
}
.home-trust-container {
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}
.home-trust-text span {
    color:#3B82F6;
    font-weight:900;
    letter-spacing:1px;
    font-size:14px;
}
.home-trust-text h2 {
    font-size:46px;
    line-height:1.12;
    color:#111827;
    margin:18px 0 25px;
    max-width:620px;
}
.home-trust-text p {
    color:#475569;
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
    max-width:620px;
}
.home-trust-text ul {
    list-style:none;
    padding:0;
    margin-top:30px;
}
.home-trust-text li {
    position:relative;
    padding-left:32px;
    margin-bottom:14px;
    color:#111827;
    font-size:17px;
    font-weight:700;
}
.home-trust-text li::before {
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:10px;
    height:10px;
    background:#3B82F6;
    border-radius:50%;
}
.home-trust-image img {
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:28px;
    display:block;
}
.reveal-up {
    opacity:0;
    transform:translateY(45px);
    transition:opacity .8s ease, transform .8s ease;
}
.reveal-up.show {
    opacity:1;
    transform:translateY(0);
}

@media(max-width:900px){.home-trust-container {
    grid-template-columns:1fr;
    gap:45px;
}
.home-trust-text h2 {
    font-size:34px;
}
.home-trust-image img {
    height:350px;
}

}.home-dynamic-header {
    height: auto !important;
    min-height: 0 !important;
    background: #F0F9FF !important;
    color: #111827 !important;
    overflow: hidden !important;
}
.home-dynamic-header::after {
    display: none !important;
}
.home-dynamic-header .main-header {
    height: 95px !important;
    background: #111827 !important;
}
.home-dynamic-header .hero-carousel {
    position: relative !important;
    height: 500px !important;
    background: #ffffff !important;
    overflow: hidden !important;
}
.home-dynamic-header .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: 58% 42% !important;
    align-items: center !important;
    padding: 35px 7% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(100%) !important;
    transition: transform .85s cubic-bezier(.22,.61,.36,1) !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}
.home-dynamic-header .hero-slide.active {
    transform: translateX(0) !important;
    z-index: 3 !important;
}
.home-dynamic-header .hero-slide.previous {
    transform: translateX(-100%) !important;
    z-index: 2 !important;
}
.home-dynamic-header .hero-slide.no-transition {
    transition: none !important;
}
.home-dynamic-header .hero-car-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.home-dynamic-header .hero-car-image img {
    width: 100% !important;
    max-width: 760px !important;
    max-height: 390px !important;
    object-fit: contain !important;
    display: block !important;
}
.home-dynamic-header .hero-car-info {
    position: relative !important;
    z-index: 50 !important;
    color: #111827 !important;
    pointer-events: auto !important;
}
.home-dynamic-header .hero-car-info span {
    color: #3B82F6 !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
}
.home-dynamic-header .hero-car-info h1 {
    font-size: 54px !important;
    line-height: 1.05 !important;
    color: #111827 !important;
    margin: 15px 0 22px !important;
}
.home-dynamic-header .hero-car-specs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 22px !important;
}
.home-dynamic-header .hero-car-specs p {
    background: #ffffff !important;
    color: #1E3A8A !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 20px rgba(30,58,138,0.08) !important;
}
.home-dynamic-header .hero-car-info strong {
    display: block !important;
    color: #1E3A8A !important;
    font-size: 28px !important;
    margin: 20px 0 28px !important;
}
.home-dynamic-header .hero-main-btn {
    position: relative !important;
    z-index: 999 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #3B82F6 !important;
    color: #ffffff !important;
    padding: 17px 38px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    pointer-events: auto !important;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease !important;
}
.home-dynamic-header .hero-main-btn:hover {
    background: #1E3A8A !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 35px rgba(30,58,138,.25) !important;
}

@media (max-width: 768px) {.home-dynamic-header .hero-carousel {
    height: auto !important;
}
.home-dynamic-header .hero-slide {
    position: relative !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 35px 20px !important;
    transform: none !important;
}
.home-dynamic-header .hero-slide.active {
    display: grid !important;
}
.home-dynamic-header .hero-car-info h1 {
    font-size: 34px !important;
}
.home-dynamic-header .hero-car-image img {
    max-height: 260px !important;
}

}.home-dynamic-header .hero-carousel {
    position: relative !important;
    height: 500px !important;
    overflow: hidden !important;
}
.home-dynamic-header .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.7s cubic-bezier(.22,.61,.36,1) !important;
    z-index: 1 !important;
}
.home-dynamic-header .hero-slide.reset {
    transition: none !important;
    transform: translateX(100%) !important;
    z-index: 1 !important;
}
.home-natural-page {
    background:#ffffff;
    color:#111827;
}
.home-intro-strip {
    background:#F8FAFC;
    border-bottom:1px solid #e5e7eb;
    padding:24px 7%;
}
.home-intro-inner {
    max-width:1280px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.home-intro-inner p {
    font-size:18px;
    line-height:1.7;
    color:#334155;
    max-width:850px;
}
.home-intro-inner a,
.home-choice-btn,
.home-fleet-bottom a {
    background:#3B82F6;
    color:#ffffff;
    text-decoration:none;
    font-weight:800;
    border-radius:999px;
    transition:.3s ease;
}
.home-intro-inner a {
    padding:13px 24px;
    white-space:nowrap;
}
.home-intro-inner a:hover,
.home-choice-btn:hover,
.home-fleet-bottom a:hover {
    background:#1E3A8A;
    transform:translateY(-2px);
}
.home-choice-section {
    max-width:1280px;
    margin:70px auto 40px;
    padding:0 7%;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
}
.home-choice-left span,
.home-section-heading span,
.home-service-text span {
    color:#3B82F6;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.2px;
}
.home-choice-left h2,
.home-section-heading h2,
.home-service-text h2 {
    color:#111827;
    font-size:42px;
    line-height:1.12;
    margin:12px 0 16px;
}
.home-choice-left p,
.home-section-heading p,
.home-service-text p {
    color:#475569;
    font-size:17px;
    line-height:1.85;
    max-width:670px;
}
.home-choice-btn {
    padding:16px 28px;
    white-space:nowrap;
}
.home-fleet-section {
    padding:55px 7% 90px;
    background:#F8FAFC;
}
.home-section-heading {
    max-width:1280px;
    margin:0 auto 38px;
}
.home-section-heading.light h2,
.home-section-heading.light span {
    color:#ffffff;
}
.home-fleet-layout {
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:1.15fr 1fr 1fr;
    gap:22px;
}
.home-fleet-card {
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(15,23,42,.07);
    transition:.35s ease;
}
.home-fleet-card:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 55px rgba(15,23,42,.11);
}
.home-fleet-card.is-large {
    grid-row:span 2;
}
.home-fleet-image {
    min-height:210px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
    background:#ffffff;
}
.home-fleet-card.is-large .home-fleet-image {
    min-height:390px;
}
.home-fleet-image img {
    width:100%;
    max-height:280px;
    object-fit:contain;
    display:block;
}
.home-fleet-card.is-large .home-fleet-image img {
    max-height:360px;
}
.home-fleet-info {
    padding:24px;
}
.home-fleet-info h3 {
    font-size:24px;
    color:#111827;
    margin-bottom:14px;
}
.home-fleet-specs {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}
.home-fleet-specs span {
    background:#F0F9FF;
    color:#1E3A8A;
    padding:8px 11px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}
.home-fleet-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.home-fleet-bottom strong {
    color:#1E3A8A;
    font-size:18px;
}
.home-fleet-bottom a {
    padding:11px 18px;
    font-size:14px;
}
.home-service-section {
    max-width:1280px;
    margin:auto;
    padding:95px 7%;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:80px;
    align-items:center;
}
.home-service-list {
    border-left:2px solid #dbeafe;
    padding-left:34px;
}
.home-service-list div {
    padding:22px 0;
    border-bottom:1px solid #e5e7eb;
}
.home-service-list div:last-child {
    border-bottom:0;
}
.home-service-list strong {
    color:#111827;
    font-size:25px;
}
.home-service-list p {
    margin-top:8px;
    color:#111827;
    font-size:19px;
    line-height:1.65;
    font-weight:700;
}
.home-offers-natural {
    background:#F8FAFC;
    padding:90px 7%;
}
.home-offers-natural-grid {
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    border-top:1px solid rgba(255,255,255,.14);
}
.home-offers-natural-grid div {
    padding:34px 32px;
    border-right:1px solid rgba(255,255,255,.14);
}
.home-offers-natural-grid div:last-child {
    border-right:0;
}
.home-offers-natural-grid h3 {
    color:#111827;
    font-size:24px;
    margin-bottom:14px;
}
.home-offers-natural-grid p {
    color:#111827;
    line-height:1.8;
    font-size:16px;
}
.home-steps-natural {
    padding:90px 7%;
    background:#ffffff;
}
.home-steps-line {
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #dbeafe;
}
.home-steps-line div {
    padding:30px 26px;
    border-right:1px solid #dbeafe;
}
.home-steps-line div:last-child {
    border-right:0;
}
.home-steps-line strong {
    display:inline-flex;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    background:#F0F9FF;
    color:#1E3A8A;
    border-radius:50%;
    margin-bottom:16px;
}
.home-steps-line p {
    color:#111827;
    font-weight:800;
    font-size:17px;
}
.natural-reveal {
    opacity:0;
    transform:translateY(24px);
    transition:transform .65s ease, opacity .65s ease;
}
.natural-reveal.visible {
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1000px){.home-choice-section,
    .home-intro-inner,
    .home-service-section {
    flex-direction:column;
    display:flex;
    align-items:flex-start;
}
.home-fleet-layout,
    .home-offers-natural-grid,
    .home-steps-line {
    grid-template-columns:1fr;
}
.home-fleet-card.is-large {
    grid-row:auto;
}
.home-offers-natural-grid div,
    .home-steps-line div {
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.14);
}
.home-steps-line div {
    border-bottom:1px solid #dbeafe;
}
.home-choice-left h2,
    .home-section-heading h2,
    .home-service-text h2 {
    font-size:34px;
}

}

/* ================= PREMIUM HOMEPAGE CTA ================= */

.home-dynamic-header .hero-main-btn {
    position: relative !important;
    overflow: hidden !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 18px 42px !important;
    min-width: 240px !important;

    background: linear-gradient(135deg, #1E3A8A, #3B82F6) !important;
    color: #ffffff !important;

    border: 1px solid rgba(255,255,255,0.22) !important;
    border-radius: 999px !important;

    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: 0.2px !important;

    box-shadow: 0 18px 40px rgba(30,58,138,0.28) !important;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease !important;
}

.home-dynamic-header .hero-main-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;

    width: 55px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform: skewX(-22deg);
    transition: left .75s ease;
}

.home-dynamic-header .hero-main-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 24px 55px rgba(30,58,138,0.38) !important;
    background: linear-gradient(135deg, #172554, #2563EB) !important;
}

.home-dynamic-header .hero-main-btn:hover::after {
    left: 115% !important;
}

.home-dynamic-header .hero-main-btn::before {
    content: "→";
    order: 2;
    font-size: 20px;
    transition: transform .28s ease;
}

.home-dynamic-header .hero-main-btn:hover::before {
    transform: translateX(5px);
}
.home-intro {
    background: #F8FAFC;
    padding: 70px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.intro-content {
    max-width: 800px;
}

.intro-badge {
    display: inline-block;
    margin-bottom: 15px;

    color: #3B82F6;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
}

.intro-content h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;

    color: #111827;

    margin-bottom: 20px;
}

.intro-content p {
    font-size: 20px;
    line-height: 1.8;

    color: #4B5563;

    max-width: 700px;
}

/* ================= PREMIUM INTRO STRIP ================= */

.premium-intro-strip {
    background: #F8FAFC !important;
    padding: 70px 7% !important;
    border-top: 1px solid #E5E7EB !important;
    border-bottom: 1px solid #E5E7EB !important;
}

.premium-intro-inner {
    max-width: 1350px !important;
    margin: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 60px !important;
}

.premium-intro-text span {
    display: inline-block !important;
    margin-bottom: 14px !important;

    color: #3B82F6 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
}

.premium-intro-text h2 {
    font-size: 46px !important;
    line-height: 1.12 !important;
    color: #111827 !important;
    margin-bottom: 18px !important;
    max-width: 760px !important;
}

.premium-intro-text p {
    font-size: 20px !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    max-width: 780px !important;
}

.premium-intro-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 190px !important;
    padding: 18px 34px !important;

    background: #3B82F6 !important;
    color: white !important;

    border-radius: 999px !important;
    text-decoration: none !important;

    font-size: 18px !important;
    font-weight: 900 !important;

    transition: .3s ease !important;
    box-shadow: 0 16px 35px rgba(59,130,246,.25) !important;
}

.premium-intro-btn:hover {
    background: #1E3A8A !important;
    transform: translateY(-4px) !important;
}

@media(max-width: 900px) {
    .premium-intro-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .premium-intro-text h2 {
        font-size: 34px !important;
    }
}





/* ================= HOMEPAGE TYPOGRAPHY + CTA UPGRADE ================= */

/* Bigger, stronger section labels */
.home-natural-page section span,
.home-section-heading span,
.premium-intro-text span,
.home-choice-left span {
    color: #3B82F6 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

/* Main section titles */
.premium-intro-text h2,
.home-choice-left h2,
.home-section-heading h2,
.home-service-text h2 {
    color: #111827 !important;
    font-size: 48px !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}

/* Paragraphs */
.premium-intro-text p,
.home-choice-left p,
.home-section-heading p,
.home-service-text p {
    color: #475569 !important;
    font-size: 19px !important;
    line-height: 1.8 !important;
}

/* Main homepage CTAs */
.premium-intro-btn,
.home-choice-btn,
.home-fleet-bottom a {
    position: relative !important;
    overflow: hidden !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    background: linear-gradient(135deg, #1E3A8A, #3B82F6) !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 999px !important;

    text-decoration: none !important;
    font-weight: 900 !important;
    letter-spacing: .2px !important;

    box-shadow: 0 14px 32px rgba(30,58,138,.28) !important;
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease !important;
}

/* Bigger top buttons */
.premium-intro-btn,
.home-choice-btn {
    min-width: 340px !important;
    padding: 18px 40px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    white-space: nowrap !important;
}

/* Vehicle card buttons */
.home-fleet-bottom a {
    min-width: 125px !important;
    padding: 13px 22px !important;
    font-size: 15px !important;
}

/* Add arrow */
.premium-intro-btn::before,
.home-choice-btn::before,
.home-fleet-bottom a::before {
    content: "→";
    order: 2;
    font-size: 18px;
    transition: transform .28s ease;
}

/* Shine */
.premium-intro-btn::after,
.home-choice-btn::after,
.home-fleet-bottom a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 55px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-22deg);
    transition: left .75s ease;
}

.premium-intro-btn:hover,
.home-choice-btn:hover,
.home-fleet-bottom a:hover {
    transform: translateY(-4px) !important;
    background: linear-gradient(135deg, #172554, #2563EB) !important;
    box-shadow: 0 22px 48px rgba(30,58,138,.38) !important;
}

.premium-intro-btn:hover::before,
.home-choice-btn:hover::before,
.home-fleet-bottom a:hover::before {
    transform: translateX(5px);
}

.premium-intro-btn:hover::after,
.home-choice-btn:hover::after,
.home-fleet-bottom a:hover::after {
    left: 120%;
}

/* Make vehicle cards feel less tiny */
.home-fleet-card {
    border-radius: 22px !important;
    box-shadow: 0 18px 45px rgba(15,23,42,.08) !important;
}

.home-fleet-info h3 {
    font-size: 24px !important;
    color: #111827 !important;
    font-weight: 900 !important;
}

.home-fleet-bottom strong {
    color: #1E3A8A !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* Responsive */
@media(max-width: 900px) {
    .premium-intro-text h2,
    .home-choice-left h2,
    .home-section-heading h2,
    .home-service-text h2 {
        font-size: 34px !important;
    }

    .premium-intro-btn,
    .home-choice-btn {
        width: 100% !important;
    }
}


/* ================= PREMIUM SECTION LABELS ================= */

.home-natural-page section span,
.home-section-heading span,
.premium-intro-text span,
.home-choice-left span,
.home-service-text span {
    display: inline-block !important;
    color: #64748B !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
}

/* small elegant blue line before labels */
.home-natural-page section span,
.home-section-heading span,
.premium-intro-text span,
.home-choice-left span,
.home-service-text span {

    color: #64748B !important;

    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;

    display: inline-block !important;
    margin-bottom: 18px !important;
}

/* stronger real titles */
.premium-intro-text h2,
.home-choice-left h2,
.home-section-heading h2,
.home-service-text h2 {
    color: #111827 !important;
    font-size: 50px !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: -1.2px !important;
}

/* more readable paragraphs */
.premium-intro-text p,
.home-choice-left p,
.home-section-heading p,
.home-service-text p {
    color: #475569 !important;
    font-size: 19px !important;
    line-height: 1.85 !important;
}

@media(max-width: 900px) {
    .premium-intro-text h2,
    .home-choice-left h2,
    .home-section-heading h2,
    .home-service-text h2 {
        font-size: 34px !important;
    }
}


/* ================= PREMIUM FLEET CARDS ================= */

.home-fleet-layout {
    max-width: 1180px !important;
    margin: 0 auto !important;
    gap: 28px !important;
}

.home-fleet-card {
    background: #ffffff !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 18px 45px rgba(15,23,42,.08) !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
}

.home-fleet-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 28px 65px rgba(15,23,42,.14) !important;
}

.home-fleet-image {
    height: 260px !important;
    padding: 25px !important;
    background: #ffffff !important;
}

.home-fleet-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform .35s ease !important;
}

.home-fleet-card:hover .home-fleet-image img {
    transform: scale(1.05) !important;
}

.home-fleet-info {
    padding: 26px !important;
}

.home-fleet-info h3 {
    font-size: 25px !important;
    font-weight: 900 !important;
    color: #111827 !important;
    margin-bottom: 16px !important;
}

.home-fleet-specs {
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.home-fleet-specs span {
    background: #F1F5F9 !important;
    color: #1E3A8A !important;
    padding: 9px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.home-fleet-bottom {
    display: grid !important;
    gap: 14px !important;
}

.home-fleet-bottom strong {
    color: #1E3A8A !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.home-fleet-bottom a {
    width: 100% !important;
    min-width: 100% !important;
    padding: 15px 22px !important;
    font-size: 16px !important;
}

/* ================= HERO CAR NAME CLEAN STYLE ================= */

.home-dynamic-header .hero-car-info h1 {
    color: #0F172A !important;
    font-size: 62px !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: -2.5px !important;
    margin: 0 0 28px !important;
    max-width: 620px !important;
}

.home-dynamic-header .hero-car-info {
    padding-top: 10px !important;
}

.home-dynamic-header .hero-car-specs {
    margin-bottom: 28px !important;
}

.home-dynamic-header .hero-car-info strong {
    color: #1E3A8A !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    margin-bottom: 30px !important;
}

/* ===== PREMIUM HERO CAR TITLE ===== */

.home-dynamic-header .hero-car-info h1 {
    font-family: "Poppins", "Montserrat", Arial, sans-serif !important;
    color: #1E3A8A !important;

    font-size: 52px !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    letter-spacing: -1.4px !important;

    margin: 0 0 26px !important;
    max-width: 560px !important;
}

/* price */
.home-dynamic-header .hero-car-info strong {
    display: block !important;
    color: #111827 !important;

    font-size: 27px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;

    margin: 25px 0 28px !important;
}

/* specs pills */
.home-dynamic-header .hero-car-specs p {
    background: #F8FAFC !important;
    color: #1E3A8A !important;

    padding: 12px 18px !important;
    border-radius: 999px !important;

    font-size: 15px !important;
    font-weight: 800 !important;

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06) !important;
}

/* button better size */
.home-dynamic-header .hero-main-btn {
    min-width: 270px !important;
    padding: 18px 38px !important;
    font-size: 17px !important;
}

/* ===== HERO CAR DESCRIPTION ===== */

.home-dynamic-header .hero-car-description {
    max-width: 520px !important;
    margin: -10px 0 24px !important;

    color: #475569 !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    font-weight: 500 !important;
}

/* ================= CLEAN FLEET GRID ================= */

.home-fleet-layout {
    max-width: 1180px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    align-items: stretch !important;
}

.home-fleet-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.home-fleet-image {
    height: 220px !important;
}

.home-fleet-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.home-fleet-bottom {
    margin-top: auto !important;
}

@media(max-width: 1000px) {
    .home-fleet-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 650px) {
    .home-fleet-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {

    .home-choice-btn {
        width: 100% !important;
        min-width: 100% !important;

        max-width: 100% !important;

        font-size: 16px !important;
        padding: 18px 25px !important;
    }

}

/* ===== FLEET CTA ===== */

.home-fleet-cta {
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

.home-fleet-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 280px;
    padding: 18px 36px;

    background: #1E3A8A;
    color: #fff;

    text-decoration: none;
    font-weight: 700;
    font-size: 17px;

    border-radius: 999px;

    transition: all .3s ease;
}

.home-fleet-cta a:hover {
    transform: translateY(-3px);
    background: #2563EB;
}



/* ==================================================
   CLEAN FINAL HEADER SYSTEM - HOME + OTHER PAGES
   Both header-home.php and header.php use the same top bar style.
================================================== */

:root {
    --trio-dark: #111827;
    --trio-blue: #3B82F6;
    --trio-blue-dark: #1E3A8A;
    --trio-white: #ffffff;
}

.site-header.simple-header,
.site-header.home-dynamic-header {
    background: var(--trio-dark) !important;
    overflow: visible !important;
}

.site-header.simple-header {
    height: 115px !important;
    min-height: 115px !important;
}

.site-header.simple-header::after,
.site-header.home-dynamic-header::after {
    display: none !important;
}

.site-header.simple-header .main-header,
.site-header.home-dynamic-header .main-header {
    height: 115px !important;
    min-height: 115px !important;
    background: var(--trio-dark) !important;
    padding: 0 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 35px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    z-index: 9999 !important;
}

.site-header.simple-header .logo img,
.site-header.home-dynamic-header .logo img {
    width: 180px !important;
    height: auto !important;
    max-height: 95px !important;
    object-fit: contain !important;
    display: block !important;
}

.site-header.simple-header .main-menu,
.site-header.home-dynamic-header .main-menu {
    flex: 1 !important;
}

.site-header.simple-header .nav-menu,
.site-header.home-dynamic-header .nav-menu,
.site-header.simple-header .main-menu ul,
.site-header.home-dynamic-header .main-menu ul {
    display: flex !important;
    align-items: center !important;
    gap: 34px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-header.simple-header .main-menu a,
.site-header.home-dynamic-header .main-menu a {
    color: var(--trio-white) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    padding: 10px 0 !important;
    position: relative !important;
    transition: color .25s ease !important;
}

.site-header.simple-header .main-menu a::after,
.site-header.home-dynamic-header .main-menu a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 2px !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--trio-blue) !important;
    transition: width .25s ease !important;
}

.site-header.simple-header .main-menu a:hover,
.site-header.home-dynamic-header .main-menu a:hover {
    color: var(--trio-blue) !important;
}

.site-header.simple-header .main-menu a:hover::after,
.site-header.home-dynamic-header .main-menu a:hover::after {
    width: 100% !important;
}

.site-header.simple-header .phone-box,
.site-header.home-dynamic-header .phone-box {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: var(--trio-white) !important;
    white-space: nowrap !important;
}

.site-header.simple-header .phone-icon,
.site-header.home-dynamic-header .phone-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(59,130,246,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.site-header.simple-header .phone-box p,
.site-header.home-dynamic-header .phone-box p {
    color: #CBD5E1 !important;
    font-size: 12px !important;
    margin: 0 0 3px !important;
}

.site-header.simple-header .phone-box strong,
.site-header.home-dynamic-header .phone-box strong {
    color: var(--trio-white) !important;
    font-size: 15px !important;
}

.site-header.simple-header .find-car-btn,
.site-header.home-dynamic-header .find-car-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--trio-blue) !important;
    color: var(--trio-white) !important;
    padding: 16px 26px !important;
    border-radius: 11px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease !important;
}

.site-header.simple-header .find-car-btn:hover,
.site-header.home-dynamic-header .find-car-btn:hover {
    background: var(--trio-blue-dark) !important;
    color: var(--trio-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 30px rgba(59,130,246,0.22) !important;
}

/* Keep the homepage carousel under the unified header. */
.site-header.home-dynamic-header .hero-carousel {
    background: #ffffff !important;
}

@media (max-width: 992px) {
    .site-header.simple-header .main-header,
    .site-header.home-dynamic-header .main-header {
        padding: 0 24px !important;
        gap: 18px !important;
    }

    .site-header.simple-header .phone-box,
    .site-header.home-dynamic-header .phone-box,
    .site-header.simple-header .find-car-btn,
    .site-header.home-dynamic-header .find-car-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .site-header.simple-header {
        height: 96px !important;
        min-height: 96px !important;
    }

    .site-header.simple-header .main-header,
    .site-header.home-dynamic-header .main-header {
        height: 96px !important;
        min-height: 96px !important;
        padding: 0 20px !important;
    }

    .site-header.simple-header .logo,
    .site-header.home-dynamic-header .logo {
        margin-left: 68px !important;
        z-index: 100002 !important;
    }

    .site-header.simple-header .logo img,
    .site-header.home-dynamic-header .logo img {
        width: 105px !important;
        max-height: 88px !important;
    }

    .site-header.simple-header .mobile-menu-toggle,
    .site-header.home-dynamic-header .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        position: fixed !important;
        top: 22px !important;
        left: 22px !important;
        width: 52px !important;
        height: 52px !important;
        background: var(--trio-dark) !important;
        border: 1px solid rgba(255,255,255,0.12) !important;
        border-radius: 12px !important;
        z-index: 100003 !important;
        cursor: pointer !important;
    }

    .site-header.simple-header .mobile-menu-overlay,
    .site-header.home-dynamic-header .mobile-menu-overlay {
        display: block !important;
    }

    .site-header.simple-header .main-menu,
    .site-header.home-dynamic-header .main-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 85% !important;
        height: 100vh !important;
        background: #071F3F !important;
        padding: 115px 30px 30px !important;
        transition: left .4s ease !important;
        z-index: 100001 !important;
    }

    .site-header.simple-header .main-menu.is-open,
    .site-header.home-dynamic-header .main-menu.is-open {
        left: 0 !important;
    }

    .site-header.simple-header .main-menu ul,
    .site-header.home-dynamic-header .main-menu ul,
    .site-header.simple-header .nav-menu,
    .site-header.home-dynamic-header .nav-menu {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 26px !important;
    }

    .site-header.simple-header .main-menu a,
    .site-header.home-dynamic-header .main-menu a {
        font-size: 20px !important;
        color: var(--trio-white) !important;
    }
}


/* ==================================
   WHATSAPP
================================== */

.header-whatsapp{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
    color:#fff;
}

.header-whatsapp p{
    margin:0;
    color:#CBD5E1;
    font-size:12px;
}

.header-whatsapp strong{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

/* ==================================
   TRACK BUTTON
================================== */

.track-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:54px;
    padding:0 28px;

    background:transparent;
    border:2px solid #3B82F6;

    color:#fff;
    text-decoration:none;

    border-radius:999px;

    font-size:15px;
    font-weight:700;

    transition:.3s;
}

.track-btn:hover{
    background:#3B82F6;
    transform:translateY(-2px);
}

/* ===== TRIOPLUS PREMIUM LOADER ===== */

#trioplus-loader{
    position:fixed;
    inset:0;
    z-index:999999;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity .55s ease, visibility .55s ease;
}

#trioplus-loader.hide{
    opacity:0;
    visibility:hidden;
}

.trioplus-loader-box{
    text-align:center;
}

.trioplus-loader-box img{
    width:210px;
    height:auto;
    margin-bottom:22px;
    animation:loaderFloat 1.3s ease-in-out infinite alternate;
}

.trioplus-loader-box p{
    color:#ffffff;
    font-size:14px;
    font-weight:800;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.loader-line{
    width:220px;
    height:4px;
    background:rgba(255,255,255,.12);
    border-radius:999px;
    overflow:hidden;
    margin:auto;
}

.loader-line span{
    display:block;
    width:45%;
    height:100%;
    background:linear-gradient(90deg,#1E3A8A,#3B82F6);
    border-radius:999px;
    animation:loaderMove 1s ease-in-out infinite;
}

@keyframes loaderFloat{
    from{ transform:translateY(0); }
    to{ transform:translateY(-7px); }
}

@keyframes loaderMove{
    from{ transform:translateX(-120%); }
    to{ transform:translateX(260%); }
}

@media(max-width:768px){
    .trioplus-loader-box img{
        width:155px;
    }

    .loader-line{
        width:170px;
    }

    .trioplus-loader-box p{
        font-size:12px;
        letter-spacing:3px;
    }
}

/* ================= MOBILE HERO FIX ================= */

@media (max-width: 768px) {

    .home-dynamic-header {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .home-dynamic-header .hero-carousel {
        height: auto !important;
        min-height: 720px !important;
        overflow: hidden !important;
        padding: 45px 22px 60px !important;
        background: #ffffff !important;
    }

    .home-dynamic-header .hero-slide {
        min-height: 720px !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 28px !important;
    }

    .home-dynamic-header .hero-car-image {
        width: 100% !important;
        height: 250px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .home-dynamic-header .hero-car-image img {
        width: 100% !important;
        max-width: 360px !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .home-dynamic-header .hero-car-info {
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .home-dynamic-header .hero-car-info h1 {
        font-size: 48px !important;
        line-height: 1.05 !important;
        margin-bottom: 18px !important;
    }

    .home-dynamic-header .hero-car-description {
        max-width: 340px !important;
        margin: 0 auto 22px !important;
        font-size: 17px !important;
        line-height: 1.6 !important;
    }

    .home-dynamic-header .hero-car-specs {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-bottom: 22px !important;
    }

    .home-dynamic-header .hero-car-info strong {
        font-size: 22px !important;
        margin-bottom: 22px !important;
    }

    .home-dynamic-header .hero-main-btn {
        width: 100% !important;
        max-width: 310px !important;
        min-width: unset !important;
        margin: 0 auto !important;
    }
}

/* ================= MOBILE LOADER FIX ================= */

@media (max-width: 768px) {

    #trioplus-loader {
        align-items: center !important;
        justify-content: center !important;
        padding: 0 24px !important;
    }

    .trioplus-loader-box {
        transform: translateY(-35px) !important;
        width: 100% !important;
        text-align: center !important;
    }

    .trioplus-loader-box img {
        width: 180px !important;
        max-width: 70vw !important;
        margin-bottom: 24px !important;
    }

    .trioplus-loader-box p {
        font-size: 12px !important;
        letter-spacing: 3px !important;
        margin-bottom: 16px !important;
    }

    .loader-line {
        width: 190px !important;
        max-width: 70vw !important;
    }
}

/* ==================================================
   VEHICLES PAGE LAYOUT FIX - SORT BAR + GRID
   Keeps the assistant banner and sort outside the car grid
================================================== */

.vehicles-main-content {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.vehicles-main-content .vehicles-smart-banner {
    width: 100% !important;
    margin-bottom: 22px !important;
}

.vehicles-sort-bar {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 26px !important;
}

.vehicles-sort-bar span {
    color: #111827 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.vehicles-sort-bar select {
    height: 44px !important;
    min-width: 180px !important;
    padding: 0 14px !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    outline: none !important;
}

.vehicles-main-content .vehicles-list {
    width: 100% !important;
    flex: initial !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
    align-items: stretch !important;
}

.vehicles-main-content .vehicle-card {
    height: 100% !important;
}

@media (max-width: 1100px) {
    .vehicles-main-content .vehicles-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .vehicles-main-content {
        width: 100% !important;
    }

    .vehicles-sort-bar {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        margin-bottom: 22px !important;
    }

    .vehicles-sort-bar select {
        width: 100% !important;
    }

    .vehicles-main-content .vehicles-list {
        grid-template-columns: 1fr !important;
    }
}

/* ===== TRIOPLUS FEATURES ===== */

.home-service-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0 50px;
}

.home-service-list > div{
    padding:35px 0;
    border-bottom:1px solid #E5E7EB;
}

.home-service-list strong{
    display:block;
    font-size:34px;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.home-service-list p{
    font-size:18px;
    font-weight:700;
    line-height:1.6;
    color:#111827;
}

@media(max-width:900px){
    .home-service-list{
        grid-template-columns:1fr;
    }
}


/* ================= CONTACT PAGE ================= */

.contact-page{
    background:#F8FAFC;
}

.contact-hero{
    padding:90px 7% 70px;
    text-align:center;
    background:#ffffff;
}

.contact-hero span,
.contact-map-title span{
    color:#64748B;
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.contact-hero h1{
    max-width:850px;
    margin:18px auto;
    color:#111827;
    font-size:54px;
    line-height:1.08;
    font-weight:900;
}

.contact-hero p{
    max-width:720px;
    margin:auto;
    color:#475569;
    font-size:19px;
    line-height:1.8;
}

.contact-section{
    max-width:1250px;
    margin:auto;
    padding:80px 7%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
}

.contact-info,
.contact-form-box{
    background:#ffffff;
    border:1px solid #E5E7EB;
    border-radius:26px;
    padding:38px;
    box-shadow:0 18px 45px rgba(15,23,42,.06);
}

.contact-info h2,
.contact-form-box h2{
    color:#111827;
    font-size:32px;
    margin-bottom:16px;
}

.contact-intro{
    color:#475569;
    line-height:1.8;
    margin-bottom:28px;
}

.contact-card{
    padding:20px 0;
    border-bottom:1px solid #E5E7EB;
}

.contact-card:last-child{
    border-bottom:none;
}

.contact-card strong{
    display:block;
    color:#1E3A8A;
    margin-bottom:8px;
}

.contact-card a,
.contact-card p{
    color:#111827;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
}

.contact-form{
    display:grid;
    gap:18px;
}

.contact-form label{
    display:block;
    margin-bottom:8px;
    color:#111827;
    font-weight:800;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #CBD5E1;
    border-radius:14px;
    padding:15px 16px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    min-height:140px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#3B82F6;
}

.contact-form button{
    height:56px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#1E3A8A,#3B82F6);
    color:white;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
}

.contact-map-section{
    padding:20px 7% 90px;
}

.contact-map-title{
    max-width:1250px;
    margin:0 auto 30px;
}

.contact-map-title h2{
    color:#111827;
    font-size:40px;
    margin-top:12px;
}

.contact-map{
    max-width:1250px;
    margin:auto;
    height:430px;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:900px){
    .contact-hero{
        padding:70px 22px 50px;
    }

    .contact-hero h1{
        font-size:36px;
    }

    .contact-section{
        grid-template-columns:1fr;
        padding:50px 20px;
    }

    .contact-info,
    .contact-form-box{
        padding:28px;
    }

    .contact-map-section{
        padding:10px 20px 70px;
    }

    .contact-map{
        height:330px;
        border-radius:20px;
    }
}

.trioplus-contact-success{
    background:#DCFCE7;
    border:1px solid #22C55E;
    color:#166534;

    padding:16px 20px;
    border-radius:12px;

    margin-bottom:20px;

    font-weight:700;
}

.contact-location-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.location-item{
    background:#fff;
    padding:20px;
    border-radius:14px;
    border:1px solid #e5e7eb;
}

.location-item strong{
    display:block;
    margin-bottom:10px;
    color:#0f172a;
}

.location-item p{
    margin:0;
    color:#475569;
}

@media(max-width:768px){
    .contact-location-info{
        grid-template-columns:1fr;
    }
}

.map-actions{
    text-align:center;
    margin-top:25px;
}

.trioplus-directions-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#2563eb;
    color:#fff;
    text-decoration:none;

    padding:16px 34px;
    border-radius:999px;

    font-weight:700;
    transition:.3s;
}

.trioplus-directions-btn:hover{
    transform:translateY(-2px);
    background:#1d4ed8;
}
.cancel-request-form{
    margin-top:25px;
}

.cancel-request-form button{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#DC2626;
    color:#fff;
    font-weight:900;
    cursor:pointer;
}

.tracking-cancel-success{
    margin-top:22px;
    padding:16px;
    background:#FEF2F2;
    border:1px solid #FCA5A5;
    color:#991B1B;
    border-radius:12px;
    font-weight:800;
}