.width_100{width: 100%;}

/* ============================================
   RENTIFY 360 THEME STYLES
   ============================================ */

/* Hero Section with Purple Gradient Background */
.slider.style_one .rentify-bg {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.slider.style_one .rentify-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.slider.style_one .rentify-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider.style_one .rentify-title .text-primary {
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.slider.style_one .rentify-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Animation Classes */
.animate_left {
    animation: fadeInLeft 1s ease-out;
}

.animate_right {
    animation: fadeInRight 1s ease-out;
}

.animate_up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Booking Form - Glass/Frosted Effect */
.booking-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
}

.booking-tabs {
    gap: 0;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    position: relative;
}

.tab-btn:first-child {
    border-top-left-radius: 12px;
}

.tab-btn:last-child {
    border-top-right-radius: 12px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.95);
    color: #6366f1;
    font-weight: 700;
    border-color: rgba(255, 255, 255, 0.95);
}

.glass-search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.glass-search-box .form-label {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-search-box .form-select,
.glass-search-box .input-with-icon {
    color: #1f2937;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.glass-search-box .form-select:focus,
.glass-search-box .input-with-icon:focus {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.glass-search-box .input-with-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.glass-search-box .input-with-icon:hover {
    background: rgba(99, 102, 241, 0.1);
}

.glass-search-box .border-start-lg {
    border-left: 1px solid rgba(99, 102, 241, 0.15);
}

.rentify-search-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.rentify-search-btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

/* Popular Cars Section */
.popular-car-section {
    background: #f9fafb;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .sub-title {
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title .title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.single-popular-car-block {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-popular-car-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.single-popular-car-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.single-popular-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-popular-car-block:hover .single-popular-car-image img {
    transform: scale(1.1);
}

.single-popular-car-rent-per-day {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.single-popular-car-rent-per-day span {
    font-size: 1.5rem;
}

.single-popular-car-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.single-popular-car-rating {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.single-popular-car-rating i {
    color: #fbbf24;
}

.single-popular-car-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.single-popular-car-text {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.border-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.single-popular-car-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.single-popular-car-info li {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-popular-car-info li i {
    color: #6366f1;
    font-size: 1rem;
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.single-popular-car-book-btn .btn-style-three {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
}

.single-popular-car-book-btn .btn-style-three:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

/* Why Choose Section */
.why-choose-section {
    background: #ffffff;
}

.why-choose-text .sub-title {
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.why-choose-text .title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.why-choose-text .feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.why-choose-text .feature-icon i {
    color: #ffffff;
}

.why-choose-text ul li {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
}

.why-choose-text ul li strong {
    color: #1f2937;
}

.why-choose-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
    background: #f9fafb;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.step-number {
    color: #6366f1;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.step-icon i {
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon i {
    transform: scale(1.1);
}

.step-card h3 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #6b7280;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: #ffffff;
}

.blog-section .section-title {
    text-align: left;
}

.blog-section .section-title .title {
    margin-bottom: 0;
}

.blog-section .section-title .btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-section .section-title .btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.blog-post-one {
    margin-bottom: 2rem;
}

.blog-post-outer {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-outer:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.blog-post-image {
    overflow: hidden;
    height: 250px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-outer:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 1.5rem;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    list-style: none;
    padding: 0;
}

.post-tag a {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    margin: 0;
}

.post-title a {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #6366f1;
}

.post-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
}

.faq-section .section-title {
    text-align: center;
}

.faq-section .section-title .title {
    font-size: 2.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #6366f1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    color: #6b7280;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    .slider.style_one .rentify-title {
        font-size: 2.5rem;
    }
    
    .slider.style_one .rentify-description {
        font-size: 1.1rem;
    }
    
    .glass-search-box .border-start-lg {
        border-left: none;
        border-top: 1px solid rgba(99, 102, 241, 0.15);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .section-title .title {
        font-size: 2rem;
    }
    
    .blog-section .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .blog-section .section-title .btn {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .slider.style_one .rentify-title {
        font-size: 2rem;
    }
    
    .slider.style_one .rentify-bg {
        min-height: 500px;
    }
    
    .tab-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .section-title .title {
        font-size: 1.75rem;
    }
    
    .why-choose-text .title {
        font-size: 2rem;
    }
}