html {
    scroll-behavior: smooth;
}
.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
    gap: 20px; /* space between cards */
    padding: 40px;
}

/* Each service card */
.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    max-width: 250px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.116);
    border: 1px solid rgba(255, 255, 255, 0.925);
    box-shadow: 10px 18px 27.7px #000000;
    border-radius: 20px;
    color: white;
}

/* Style for images */
.offer-image {
    border-radius: 10px;
    width: 100%;
    height: 200px; /* Set a fixed height for consistency */
    object-fit: cover;
    object-position: 70% 100%;
}

.offer-card a {
    display: flex; /* Flexbox to arrange image and text */
    flex-direction: column; /* Stack the image and text vertically */
    justify-content: flex-end; /* Align the text at the bottom */
    align-items: stretch; /* Stretch the anchor to fill the parent */
    width: 100%;
    height: 100%; /* Make the anchor fill the full height of .offer-card */
    text-decoration: none; /* Remove underline */
    position: relative;
}

/* offer title style */
.offer-title {
    margin-top: 10px;
    font-size: 16px;
    color: white;
}

/* Responsive design for smaller screens */
@media (max-width: 1024px) {
    .offer-card {
        max-width: 48%; /* 2 items per row */
    }
}

@media (max-width: 768px) {
    .offer-card {
        max-width: 100%; /* 1 item per row */
    }

    .offers-container {
        padding: 20px;
    }
}

/* Container for the offers */
.tops-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Each offer card */
.top-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    padding: 10px;
    background-color: white;
    width: 100%;
    max-width: 280px; /* Ensure that the card doesn't stretch too wide */
    box-sizing: border-box;
}

/* Style for images */
.top-image {
    border-radius: 10px;
    width: 100%;
    height: 200px; /* Set a fixed height for consistency */
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

.top-card a {
    display: flex; /* Flexbox to arrange image and text */
    flex-direction: column; /* Stack the image and text vertically */
    justify-content: flex-end; /* Align the text at the bottom */
    align-items: stretch; /* Stretch the anchor to fill the parent */
    width: 100%;
    height: 100%; /* Make the anchor fill the full height of .offer-card */
    text-decoration: none; /* Remove underline */
    position: relative;
}

/* Title style */
.top-title {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    text-align: center;
}

/* Responsive design for medium screens (tablets) */
@media (max-width: 1024px) {
    .top-card {
        max-width: 48%; /* Two items per row on tablet-sized screens */
    }
}

/* Responsive design for small screens (mobile) */
@media (max-width: 768px) {
    .top-card {
        flex-basis: calc(50% - 20px); /* 2 items per row on mobile */
    }

    .tops-container {
        padding: 10px; /* Reduced padding on mobile */
    }
}

/* Optional: Additional responsiveness for large screens */
@media (min-width: 1200px) {
    .top-card {
        max-width: 250px; /* Reduce width of the cards on large screens */
    }
}

/* Container for the features */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Spacing between items */
    padding: 50px 10px 10px; /* Adjust padding for top and sides */
}

/* Each feature item */
.feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    width: 150px; /* Fixed width for each feature */
}

/* Style for images */
.feature-item img {
    margin-bottom: 10px; /* Space between image and text */
}

/* Responsive Design */
/* For medium screens (tablets) */
@media (max-width: 1024px) {
    .feature-item {
        width: 130px; /* Slightly smaller items on tablet */
    }
}

/* For smaller screens (mobile) */
@media (max-width: 768px) {
    .features-container {
        padding: 20px 5px; /* Adjust padding for mobile */
    }

    .feature-item {
        width: 120px; /* Smaller items on mobile */
    }
}

/* Container for all feature items */
.explores-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 10px;
    /* overflow-x: auto; */
}

/* Each feature item */
.explore-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 150px; /* Fixed width for uniformity */
    height: 150px; /* Fixed height for uniformity */
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    position: relative;
}

/* Image container to position text over image */
.image-container {
    position: relative; /* This allows absolute positioning of text */
    width: 100%;
    height: 100%;
}

/* Image Style */
.image-container img {
    width: 100%; /* Image fills the entire container */
    height: 100%; /* Image fills the entire container */
    object-fit: cover; /* Ensures image covers the space without distortion */
}

/* Text Style on top of the image */
.image-container p {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    z-index: 2; /* Ensure text is on top of the image */
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Semi-transparent background for readability */
    padding: 2px;
    border-radius: 5px;
    margin: 0;
}

/* Responsive Design: For tablet and mobile */
@media (max-width: 1024px) {
    .explore-item {
        width: 130px;
        height: 130px;
    }

    .image-container p {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .explores-container {
        padding: 10px 5px;
        display: flex;
        flex-wrap: wrap; /* Ensure items don't wrap */
        /* overflow-x: auto; Enable horizontal scrolling */
        gap: 5px;
    }

    .explore-item {
        width: 100px; /* Smaller width for mobile */
        height: 100px;
    }

    .image-container p {
        font-size: 10px; /* Even smaller text on mobile */
        padding: 3px 6px;
    }
}

/* Form container */
.form-container {
    /* background-color: #fff; */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(255, 255, 255, 0.29);
    box-shadow: 10px 18px 27.7px #000000;
}

/* Form heading */
h3 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

/* Form labels */
label {
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
    display: block;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Quantity controls (number of people) */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    padding: 5px 13px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 100%;
    background-color: #f1f1f1;
    cursor: pointer;
}

.quantity-controls button:hover {
    background-color: #ddd;
}

/* Checkbox group */
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Submit button */
button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(255, 255, 255, 0.29);
    box-shadow: 10px 18px 27.7px #000000;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #16c04d;
}
@media (max-width: 480px) {
    .form-container {
        padding: 8px;
    }
}

.iceland-container {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 40px;
    gap: 20px;
}

/* Text Content */
.iceland-text {
    text-align: center;
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Image Styles */
.iceland-image {
    border-radius: 20px;
    width: 50%;
    height: 50%;
    /* max-width: 600px; */
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    /* For devices smaller than 768px (tablets, small laptops) */
    .iceland-text {
        font-size: 0.9rem;
    }

    .iceland-image {
        width: 90%;
        max-width: 100%;
    }
    .iceland-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* For devices smaller than 480px (mobile phones) */
    .iceland-text {
        font-size: 0.8rem;
        padding: 10px;
    }

    .iceland-image {
        width: 100%;
        max-width: 100%;
    }
    .iceland-container {
        flex-direction: column;
    }
}

.frozen-ice-button {
    /* background-color: rgba(240, 237, 237, 0.164); Transparent black background */
    color: white;
    padding: 20px 40px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(255, 255, 255, 0.29);
    box-shadow: 10px 18px 27.7px #000000;
    border-radius: 20px;
}

/* Shine Animation */
@keyframes shine {
    0% {
        background-position: -120%;
    }
    10% {
        background-position: 120%;
    }
    100% {
        background-position: 120%;
    }
}

.whys-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* position: relative; */
    align-items: flex-end;
    /* bottom: 1; */
    gap: 20px; /* space between cards */
    /* padding: 40px; */
    margin-top: 150px;
}

/* Each service card */
.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
    max-width: 250px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(255, 255, 255, 0.29);
    box-shadow: 10px 18px 27.7px #000000;
    border-radius: 20px;
    color: white;
    /* margin-top: 50px; */
}

.why-card h1 {
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 1024px) {
    .why-card {
        max-width: 48%; /* 2 items per row */
    }
}

@media (max-width: 768px) {
    .why-card {
        max-width: 100%; /* 1 item per row */
    }

    .whys-container {
        padding: 20px;
    }
}

.masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10px;
    gap: 20px;
    padding-top: 50px;
}
/* .masonry a {
  display: block;
  width: 100%;  
  height: 100%;  
  text-decoration: none; 
  position: relative; 
} */
.item {
    position: relative;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #fff;
}
.item a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-decoration: none; /* Remove underline */
}
.item:hover {
    transform: translateY(-10px);
}
.item h3 {
    position: absolute;
    bottom: 10px; /* Position the text at the bottom of the container */
    left: 50%; /* Align the text horizontally in the center */
    transform: translateX(
        -50%
    ); /* Adjust the positioning to perfectly center */
    font-size: 1.5em; /* Adjust font size as needed */
    color: #fff; /* Text color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: adds a subtle shadow to the text for readability */
    margin: 0;
}
.item1 {
    grid-row: span 10;
}
.item2 {
    grid-row: span 20;
}
.item3 {
    grid-row: span 10;
}
.item4 {
    grid-row: span 10;
}
.item5 {
    grid-row: span 10;
}
.item6 {
    grid-row: span 10;
    grid-column: span 2;
}
.item7 {
    grid-row: span 10;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .masonry {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
    }
    .item h3 {
        font-size: 1em; /* Adjust font size as needed */
    }
}
@media (max-width: 480px) {
    .item1 {
        grid-row: span 6;
    }
    .item2 {
        grid-row: span 12;
    }
    .item3 {
        grid-row: span 6;
    }
    .item4 {
        grid-row: span 12;
    }
    .item5 {
        grid-row: span 12;
    }
    .item6 {
        grid-row: span 6;
    }
}

.north {
    height: 70vh;
    width: 70%;
    border-radius: 40px;
    color: white;
    display: flex;
    align-items: end;
    padding: 0px 50px 60px 50px;
}
.north h1 {
    font-weight: bold;
}
.north button {
    color: white;
    padding: 20px 40px;
    cursor: pointer;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(255, 255, 255, 0.29);
    box-shadow: 10px 18px 27.7px #000000;
    border-radius: 20px;
}
/* Media query for mobile devices */
@media (max-width: 768px) {
    .north {
        height: 60vh;
        width: 100%;
    }
    .north h1 {
        font-size: 1.5em; /* Adjust font size as needed */
    }
}
@media (max-width: 562px) {
    .north {
        height: 50vh;
        justify-content: center;
        /* padding: 20px; */
        text-align: center;
    }
    .north h1 {
        font-size: 1.2em; /* Adjust font size as needed */
    }
}

.last {
    height: 80vh;
    padding: 40px;
    color: white;
    text-align: center;
    margin: 0;
}
.last p {
    color: white;
    width: 60%;
    margin: 0 auto;
}
.last h1 {
    font-weight: bold;
}
@media (max-width: 810px) {
    .last {
        height: 70vh;
    }
    .last h1 {
        font-size: 1.5em; /* Adjust font size as needed */
        font-weight: bold;
    }
    .last p {
        width: 90%;
    }
}
@media (max-width: 562px) {
    .last {
        height: 60vh;
    }
    .last h1 {
        font-size: 1.2em; /* Adjust font size as needed */
        font-weight: bold;
    }
    .last p {
        width: 100%;
    }
}

/* service page */
.pagesub-container {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* padding-top: 40px; */
    gap: 20px;
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(250, 249, 249, 0.29);
    box-shadow: 10px 18px 27.7px #00000050;
    border-radius: 20px;
}

/* Text Content */
.pagesub-text {
    text-align: center;
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

/* Image Styles */
.pagesub-image {
    border-radius: 20px;
    width: 50%;
    height: 50%;
    /* max-width: 600px; */
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    /* For devices smaller than 768px (tablets, small laptops) */
    .pagesub-text {
        font-size: 0.9rem;
    }

    .pagesub-image {
        width: 90%;
        max-width: 100%;
    }
    .pagesub-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* For devices smaller than 480px (mobile phones) */
    .pagesub-text {
        font-size: 0.8rem;
        padding: 10px;
    }

    .pagesub-image {
        width: 100%;
        max-width: 100%;
    }
    .pagesub-container {
        flex-direction: column;
    }
}

.sub_page .pagesub-text {
    color: white;
}

.sub_page h5, .sub_page h6 {
    color: white;
}

.sub_page ul, .sub_page li {
    color: white;
}

/* Pricing Section Styles */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.062);
    border: 2px solid rgba(255, 255, 255, 0.29);
    box-shadow: 10px 18px 27.7px #000000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 15px 25px 40px #000000;
}

.pricing-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00BFFF, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-option:hover {
    background: rgba(135, 206, 235, 0.15);
    border-color: rgba(135, 206, 235, 0.5);
    transform: translateX(5px);
}

.price-option .car-type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.price-option .price {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #00BFFF, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header .duration {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    gap: 10px;
}

.tour-details span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-details .duration {
    background: rgba(0, 191, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.tour-details .availability {
    background: rgba(34, 197, 94, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00BFFF;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Design for Pricing Cards */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .pricing-card {
        padding: 25px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .pricing-header .price {
        font-size: 36px;
    }

    .pricing-features li {
        padding: 8px 0;
        padding-left: 20px;
    }

    .tour-details {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .tour-details span {
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 20px;
    }

    .pricing-header h3 {
        font-size: 18px;
    }

    .pricing-header .price {
        font-size: 32px;
    }

    .pricing-features li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 18px;
    }

    .tour-details {
        padding: 6px;
        gap: 6px;
    }

    .tour-details span {
        font-size: 12px;
        padding: 4px 8px;
    }

    .tour-details .duration,
    .tour-details .availability {
        padding: 4px 8px;
    }
}

/* Calendar Styles */
.calendar-wrapper {
    width: 100%;
    margin: 15px 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(135, 206, 235, 0.1));
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.calendar-month-year {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-nav {
    background: rgba(0, 191, 255, 0.2);
    border: 1px solid rgba(0, 191, 255, 0.4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.calendar-nav:hover {
    background: rgba(0, 191, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.5);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    padding: 8px 2px;
    background: rgba(0, 191, 255, 0.15);
    border-radius: 8px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: white;
    box-sizing: border-box;
}

.calendar-day .day-number {
    font-size: 16px;
    font-weight: bold;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    border-color: #00BFFF;
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
    transform: scale(1.05);
}

.calendar-day.disabled {
    background: rgba(100, 100, 100, 0.2);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: default;
}

.calendar-day.today {
    border: 2px solid rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.15);
}

.selected-date-display {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    order: 10;
}

.selected-date-display i {
    color: #00BFFF;
    font-size: 18px;
}

.calendar-days {
    min-height: 200px;
}

/* Car Showcase Styles */
.car-showcase-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.car-showcase-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.car-showcase-card:hover {
    transform: translateY(-10px);
    border-color: rgba(135, 206, 235, 0.6);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
}

.car-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.car-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.car-showcase-card:hover .car-showcase-image {
    transform: scale(1.1);
}

.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.car-badge {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.5);
}

.car-info {
    padding: 25px;
    color: white;
}

.car-info h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    background: linear-gradient(45deg, #00BFFF, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.car-info p {
    font-size: 15px;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-wrapper {
        padding: 12px;
    }

    .calendar-header {
        padding: 10px;
    }

    .calendar-month-year {
        font-size: 16px;
    }

    .calendar-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .weekday {
        font-size: 11px;
        padding: 6px 2px;
    }

    .calendar-day {
        padding: 6px 2px;
    }

    .calendar-day .day-number {
        font-size: 14px;
    }

    .selected-date-display {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .calendar-wrapper {
        padding: 10px;
    }

    .calendar-header {
        padding: 8px;
    }

    .calendar-month-year {
        font-size: 14px;
    }

    .calendar-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .weekday {
        font-size: 10px;
        padding: 5px 1px;
    }

    .calendar-weekdays {
        gap: 3px;
    }

    .calendar-days {
        gap: 3px;
    }

    .calendar-day {
        padding: 4px 2px;
    }

    .calendar-day .day-number {
        font-size: 13px;
    }

    .selected-date-display {
        font-size: 12px;
        padding: 10px;
        gap: 6px;
    }
}

/* Responsive Car Showcase */
@media (max-width: 768px) {
    .car-showcase-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .car-image-wrapper {
        height: 200px;
    }

    .car-info h4 {
        font-size: 20px;
    }

    .car-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .car-showcase-container {
        gap: 20px;
    }

    .car-image-wrapper {
        height: 180px;
    }

    .car-info {
        padding: 20px;
    }

    .car-info h4 {
        font-size: 18px;
    }

    .car-info p {
        font-size: 13px;
    }

    .car-badge {
        font-size: 14px;
        padding: 8px 16px;
    }
}
