.section-box {
    margin-top: 25px;
    transition: box-shadow 0.3s ease;
}


.leasing-option {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.leasing-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leasing-option.active {
    border: 1px solid var(--accent-color);
    background-color: rgba(232, 33, 39, 0.03);
}

.period-label {
    color: #777;
    margin-bottom: 5px;
}

.period-name {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.new-price {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 5px;
    transition: transform 0.2s ease;
}

.leasing-option:hover .new-price {
    transform: scale(1.05);
}

.currency {
    color: #555;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.period {
    color: #777;
    font-size: 0.9rem;
}

.vat {
    color: #777;
    font-size: 0.8rem;
    margin-top: 5px;
}

.custom-link {
    color: #006b00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.custom-link:hover {
    color: #004d00;
}

.custom-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #006b00;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.custom-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.features-row {
    margin-top: 30px;
    color: #777;
}

.feature-item {
    display: inline-block;
    margin-right: 25px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    color: #333;
}

.feature-icon {
    margin-right: 5px;
}
.feature-icon-available {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.row > * {
    opacity: 0;
}

.row:nth-child(1) > * {
    animation: fadeIn 0.5s ease forwards;
}

.row:nth-child(2) > * {
    animation: fadeIn 0.5s ease forwards 0.1s;
}

.features-row {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.2s;
}

@media (max-width: 768px) {
    .leasing-option {
        margin-bottom: 15px;
    }

    .features-row {
        display: flex;
        flex-wrap: wrap;
    }

    .feature-item {
        margin-bottom: 10px;
    }
}

.extra-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* .extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}*/

.extra-icon {
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-icon img {
    max-height: 100%;
    transition: transform 0.3s ease;
}

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

.extra-title {
    font-weight: 500;
    color: #4a4a4a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.extra-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #3a3a3a;
    margin-bottom: 0.25rem;
}

.price-period {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.add-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #777;
    border-radius: 25px;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: width 0.3s ease;
    z-index: -1;
}

.add-btn:hover {
    border-color: #999;
    color: #333;
}

.add-btn:hover:before {
    width: 100%;
}

.add-btn.selected {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.extra-card.selected {
    border: 2px solid var(--accent-color);
}

.selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.extra-card.selected .selection-indicator {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .extra-card {
        margin-bottom: 1.5rem;
    }
}

.page-container .image-container {
    position: relative;
    overflow: hidden;
}

.page-container .car-image {
    width: 100%;
    height: auto;
}

.page-container .brand-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.page-container .car-type-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-container .booking-content {
    padding: 32px;
}

.page-container .booking-header {
    margin-bottom: 28px;
}

.page-container .booking-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.page-container .delivery-date {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
}

.page-container .delivery-date i {
    margin-right: 8px;
    color: var(--accent-color);
}

.page-container .price-table {
    margin-bottom: 32px;
}

.page-container .price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-container .price-row:last-child {
    border-bottom: none;
}

.page-container .price-label {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.page-container .price-label i {
    margin-right: 8px;
    font-size: 14px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.page-container .price-value {
    font-weight: 600;
    color: var(--text-color);
}

.page-container .total-row {
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 20px;
}

.page-container .total-row .price-label {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.page-container .total-row .price-value {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.page-container .promocode-section {
    margin-bottom: 24px;
}

.page-container .promo-toggle {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.page-container .promo-toggle:hover {
    color: var(--accent-color);
}

.page-container .promo-toggle i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.page-container .promo-toggle.active i {
    transform: rotate(90deg);
}

.page-container .promo-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.page-container .promo-form.active {
    max-height: 100px;
    opacity: 1;
    margin-top: 16px;
}

.page-container .promo-input {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.25s ease;
}

.page-container .promo-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 135, 90, 0.1);
}

.page-container .promo-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.page-container .promo-btn:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.page-container .book-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-container .book-button:hover {
    background-color: #007048;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 135, 90, 0.2);
}

.page-container .book-button:active {
    transform: translateY(0);
}

.page-container .book-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.page-container .book-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.page-container .disclaimer-notes {
    margin-top: 24px;
    color: var(--text-color);
    font-size: 0.85rem;
}

.page-container .disclaimer-notes p {
    margin-bottom: 8px;
}

.page-container .policy-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-container .policy-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-container .deposit-note {
    padding: 10px 12px;
    background-color: #fef9e7;
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.page-container .deposit-note i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
}



/* Shileds */
/* Insurance Shields Grid */
.shields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.shield-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    /* text-align: center;*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shield-card.selected {
    border: 1px solid var(--accent-color); /* Green Border */
    /* box-shadow: 0 0 15px rgba(40, 167, 69, 0.5); */
}

.offer-btn.selected {
    background-color: var(--accent-color) !important;
    color: #ffffff;
}

.shield-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

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

.shield-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.shield-card ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
}

.shield-card ul li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.shield-card ul li.cross::before {
    content: "✗";
    color: var(--secondary-color);
}

.shield-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.shield-card .price span {
    font-size: 14px;
    color: var(--text-color);
}

.shield-card .cta-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shield-card .cta-button:hover {
    background-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shields-grid {
        grid-template-columns: 1fr;
    }
}

/**********************************************************************************/
/* Thank yoou page design */
.thank-you-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
}

.thank-you-wrapper .thank-you-container {
    /* position: relative; */
    /* background: white; */
    /* border-radius: 20px; */
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); */
    max-width: 750px;
    /* width: 100%; */
    /* padding:20px; */
    text-align: center;
    /* overflow: hidden;
    border: 1px solid var(--border-color); */
}

.thank-you-wrapper .background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(
            135deg,
            rgba(220, 20, 60, 0.05) 0%,
            rgba(220, 20, 60, 0.02) 100%
        ),
        radial-gradient(
            circle at center,
            transparent 0%,
            rgba(220, 20, 60, 0.05) 100%
        ); */
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.thank-you-wrapper .confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--success-color), #22a35f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
    position: relative;
    z-index: 2;
}

.thank-you-wrapper .confirmation-icon svg {
    stroke: var(--accent-color) !important;
    stroke-width: 3;
    width: 60px;
    height: 60px;
}

.thank-you-wrapper .thank-you-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.thank-you-wrapper .thank-you-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.thank-you-wrapper .action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.thank-you-wrapper .btn-primary {
    background: linear-gradient(145deg, var(--accent-color), #bd1030);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-wrapper .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.4s ease;
}

.thank-you-wrapper .btn-primary:hover::before {
    left: 100%;
}

.thank-you-wrapper .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

.thank-you-wrapper .btn-outline-secondary {
    border-color: var(--text-color);
    color: var(--text-color);
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-wrapper .btn-outline-secondary:hover {
    background-color: var(--text-color);
    color: white;
    transform: translateY(-5px);
}

.thank-you-wrapper .support-text {
    margin-top: 40px;
    color: var(--text-color);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .thank-you-wrapper .thank-you-container {
        padding: 40px 20px;
    }

    .thank-you-wrapper .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-wrapper .action-buttons {
        flex-direction: column;
    }

    .thank-you-wrapper .action-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
}
