/* ================================
   RENTALS PAGE - PRODUCTION STYLE
================================ */

.rental-services-section {
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(212,175,55,0.08), transparent 35%),
        #050505;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.rental-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.rental-services-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.prod-section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.prod-section-heading span {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.prod-section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 15px 0;
    color: #fff;
}

.prod-heading-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 22px;
    border-radius: 20px;
}

.prod-section-heading p {
    color: #bdbdbd;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Grid */

.prod-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */

.prod-service-card {
    background: linear-gradient(145deg, #121212, #050505);
    border: 1px solid rgba(212,175,55,0.16);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.prod-service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212,175,55,0.65);
    box-shadow: 0 25px 60px rgba(212,175,55,0.14);
}

.prod-card-img {
    height: 230px;
    overflow: hidden;
}

.prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.prod-service-card:hover .prod-card-img img {
    transform: scale(1.1);
}

.prod-card-content {
    padding: 28px 24px 30px;
    position: relative;
}

.prod-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #d4af37, #8a6b14);
    color: #111;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-top: -58px;
    margin-bottom: 22px;
    box-shadow: 0 15px 35px rgba(212,175,55,0.28);
}

.prod-card-content h3 {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.prod-card-content p {
    color: #b5b5b5;
    font-size: 0.94rem;
    line-height: 1.7;
    min-height: 80px;
}

.prod-card-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
}

.prod-card-content a i {
    margin-left: 8px;
    transition: 0.3s;
}

.prod-card-content a:hover i {
    transform: translateX(6px);
}

/* Bottom CTA */

.rental-highlight-box {
    margin-top: 65px;
    padding: 42px 48px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(212,175,55,0.16), rgba(255,255,255,0.03)),
        #101010;
    border: 1px solid rgba(212,175,55,0.24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.rental-highlight-box span {
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.82rem;
}

.rental-highlight-box h3 {
    color: #fff;
    margin: 10px 0 0;
    font-size: 1.6rem;
    font-weight: 800;
}

/* Responsive */

@media (max-width: 1199px) {
    .prod-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .rental-services-section {
        padding: 95px 0 70px;
    }

    .prod-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-highlight-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .prod-section-heading h2 {
        font-size: 2rem;
    }

    .prod-services-grid {
        grid-template-columns: 1fr;
    }

    .prod-card-img {
        height: 220px;
    }

    .rental-highlight-box {
        padding: 35px 24px;
    }

    .rental-highlight-box h3 {
        font-size: 1.25rem;
    }
}

/* Rental Item Page */

.rental-price-box {
    background: #111;
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rental-price-box strong {
    color: #d4af37;
    font-size: 20px;
}

.rental-price-box span {
    color: #ddd;
    font-size: 14px;
}

.rental-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.rental-calendar {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.calendar-header {
    text-align: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
}

.calendar-day-name {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 10px;
}

.calendar-date {
    min-height: 90px;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    border: 2px solid transparent;
}

.calendar-date:hover {
    transform: translateY(-3px);
}

.calendar-date strong {
    display: block;
    font-size: 18px;
}

.calendar-date small {
    display: block;
    margin-top: 8px;
}

.available-day {
    background: #e8fff0;
    border-color: #1db954;
    color: #0f7a39;
}

.limited-day {
    background: #fff7db;
    border-color: #ffb800;
    color: #9a6b00;
}

.booked-day {
    background: #ffeaea;
    border-color: #e53935;
    color: #b71c1c;
    cursor: not-allowed;
}

.selected-day {
    background: #111;
    color: #fff;
    border-color: #d4af37;
}
.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:12px;
    margin-top:20px;
}

.calendar-date{
    min-height:90px;
    border-radius:12px;
    padding:10px;
    text-align:center;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.calendar-date:hover{
    transform:translateY(-3px);
}

.available-day{
    background:#e8fff0;
    border:2px solid #28a745;
}

.limited-day{
    background:#fff8d9;
    border:2px solid #ffc107;
}

.booked-day{
    background:#ffe5e5;
    border:2px solid #dc3545;
}

.calendar-date strong{
    display:block;
    font-size:18px;
}

.calendar-date span{
    display:block;
    margin-top:5px;
    font-size:12px;
}

.availability-layout {
    display: grid;
    grid-template-columns: 2fr 0.9fr;
    gap: 25px;
    align-items: start;
}

.availability-main-card,
.availability-booking-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.availability-item-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.availability-item-head h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.availability-item-head p {
    margin: 0;
    font-size: 16px;
}

.availability-qty-box {
    min-width: 110px;
    text-align: center;
    background: #111;
    color: #fff;
    border-radius: 16px;
    padding: 16px;
}

.availability-qty-box span {
    display: block;
    color: #d4af37;
    font-size: 13px;
    margin-bottom: 5px;
}

.availability-qty-box strong {
    font-size: 30px;
}

.calendar-legend {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-size: 14px;
    align-items: center;
}

.calendar-legend div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.legend.available {
    background: #22c55e;
}

.legend.limited {
    background: #facc15;
}

.legend.booked {
    background: #ef4444;
}

.legend.selected {
    background: #111;
    border: 2px solid #d4af37;
}

.rental-calendar {
    background: #fafafa;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #eee;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.calendar-header h3 {
    margin: 0;
    font-weight: 800;
    font-size: 24px;
}

.calendar-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-days-head {
    margin-bottom: 10px;
}

.calendar-days-head div {
    text-align: center;
    font-weight: 700;
    background: #eee;
    border-radius: 10px;
    padding: 10px 5px;
    font-size: 13px;
}

.calendar-empty {
    min-height: 82px;
}

.calendar-date {
    min-height: 82px;
    border-radius: 14px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: .25s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-date:hover {
    transform: translateY(-3px);
}

.calendar-date strong {
    font-size: 20px;
    display: block;
    line-height: 1;
}

.calendar-date small {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
}

.available-day {
    background: #e8fff0;
    border-color: #22c55e;
    color: #047857;
}

.limited-day {
    background: #fff8db;
    border-color: #facc15;
    color: #92400e;
}

.booked-day {
    background: #ffeaea;
    border-color: #ef4444;
    color: #b91c1c;
    cursor: not-allowed;
}

.calendar-disabled {
    background: #f3f4f6;
    color: #aaa;
    cursor: not-allowed;
}

.selected-day {
    background: #111 !important;
    color: #fff !important;
    border-color: #d4af37 !important;
}

.selected-range-day {
    background: #fff4bf !important;
    border-color: #d4af37 !important;
    color: #111 !important;
}

.availability-booking-card {
    position: sticky;
    top: 110px;
}

.availability-booking-card h4 {
    font-weight: 800;
    margin-bottom: 8px;
}

.selection-help {
    color: #666;
    font-size: 14px;
}

.selection-message {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    color: #555;
}

.selection-message.success {
    background: #e8fff0;
    color: #047857;
    border: 1px solid #22c55e;
}

.selection-message.error {
    background: #ffeaea;
    color: #b91c1c;
    border: 1px solid #ef4444;
}

@media(max-width: 991px) {
    .availability-layout {
        grid-template-columns: 1fr;
    }

    .availability-booking-card {
        position: static;
    }
}

@media(max-width: 575px) {
    .availability-main-card,
    .availability-booking-card {
        padding: 18px;
    }

    .calendar-grid {
        gap: 6px;
    }

    .calendar-date {
        min-height: 62px;
        padding: 7px 4px;
    }

    .calendar-date strong {
        font-size: 16px;
    }

    .calendar-days-head div {
        font-size: 11px;
        padding: 8px 2px;
    }
}

.calendar-legend,
.legend-row,
.availability-legend{
    display:flex !important;
    flex-wrap:wrap;
    gap:14px;
    align-items:center;
    justify-content:center;
    margin:20px 0;
    position:relative;
    z-index:5;
    color:#000;
}

.calendar-legend span,
.legend-row span,
.availability-legend span{
    display:inline-flex !important;
    align-items:center;
    gap:8px;
    color:#000 !important;
    font-size:14px;
    font-weight:500;
}

.legend-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    display:inline-block;
    flex-shrink:0;
}

.legend-dot.available{
    background:#28a745;
}

.legend-dot.limited{
    background:#ffc107;
}

.legend-dot.booked{
    background:#dc3545;
}