/* Professional Homepage Styles for /Rental/Search */
.homepage-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content-with-search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    color: white;
    z-index: 1;
}

.hero-text {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Integrated Search Form Styles */
.search-form-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.integrated-search-form {
    width: 100%;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-sizing: border-box;
}

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

.search-input {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
    height: 48px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.search-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.search-input:hover {
    border-color: #c0c0c0;
}

.search-button-container {
    display: flex;
    align-items: end;
}

.search-btn {
    height: 48px;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-section {
    margin-bottom: 0;
    padding: 2rem 0;
    border-bottom: 3px solid #e91e63;
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Additional Content Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-section, .story-section {
    padding: 1.5rem 0;
    border-bottom: 3px solid #c2185b;
    margin-bottom: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-content, .story-content {
    padding: 2rem;
}

.about-content .lead, .story-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.about-content p, .story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.25rem;
}

.about-image img, .story-image img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.about-image img:hover, .story-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    margin: 0;
    border-bottom: 3px solid #2196f3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e91e63;
}

.feature-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    margin: 0;
    position: relative;
}

.commitment-bg {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 50%, #ad1457 100%);
    border-radius: 0;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #880e4f;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.commitment-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('~/img/car-2.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.commitment-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.commitment-content {
    position: relative;
    z-index: 2;
}

.commitment-content .section-title {
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.commitment-content .lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    line-height: 1.6;
}

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.btn-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #e91e63;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-light:hover::before {
    left: 100%;
}

.btn-light:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-color: rgba(255, 255, 255, 1);
    color: #c2185b;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Payment Option Card Styles */
.payment-option-card {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.payment-option-card:hover {
    border-color: #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
}

.payment-option-card.selected {
    border-color: #e91e63;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
    background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
}

.payment-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-option-label {
    display: block;
    cursor: pointer;
    padding: 1.5rem;
    margin: 0;
    height: 100%;
}

.payment-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.payment-option-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.payment-option-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.payment-option-body {
    color: #666;
}

.payment-option-body p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.payment-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.payment-benefits li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
}

.payment-benefits li i {
    margin-right: 0.5rem;
}

.payment-amount {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label {
    color: #666;
    font-size: 0.9rem;
}

.amount-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e91e63;
}

.payment-option-card.selected .payment-amount {
    background: #fff;
}

/* Secure Payment Badge */
.secure-payment-badge {
    display: flex;
    align-items: center;
    background: #e8f5e9;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
}

.secure-payment-badge i {
    font-size: 1.25rem;
}

.secure-payment-badge span {
    color: #2e7d32;
    font-weight: 500;
}

/* Payment Icons */
.payment-icons {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Form Enhancements */
.form-label {
    font-weight: 500;
    color: #333;
}

/* Card Shadows */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Professional theme colors */
.text-primary {
    color: #e91e63 !important;
}

.btn-primary {
    background-color: #e91e63;
    border-color: #e91e63;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c2185b;
    border-color: #c2185b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.featured-link {
    font-weight: 600;
    color: #e91e63 !important;
}

.featured-link:hover {
    color: #c2185b !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .search-form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .search-button-container {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .homepage-hero {
        height: 550px;
    }
    
    .hero-content-with-search {
        width: 98%;
        top: 45%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        margin-bottom: 1.75rem;
    }
    
    .search-form-overlay {
        padding: 1.5rem;
    }
    
    .search-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .search-button-container {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        height: 800px;
    }
    
    .hero-content-with-search {
        top: 42%;
        width: 98%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-text {
        margin-bottom: 1.25rem;
    }
    
    .search-form-overlay {
        padding: 1rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .search-button-container {
        grid-column: span 1;
        margin-top: 0.5rem;
    }
    
    .search-label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .search-input {
        padding: 0.65rem;
        font-size: 0.9rem;
        height: 44px;
    }
    
    .search-btn {
        height: 44px;
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        height: 800px;
    }
    
    .hero-content-with-search {
        top: 42%;
        width: 98%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-text {
        margin-bottom: 1.25rem;
    }
    
    .search-form-overlay {
        padding: 1rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .search-button-container {
        grid-column: span 1;
        margin-top: 0.5rem;
    }
    
    .search-label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .search-input {
        padding: 0.65rem;
        font-size: 0.9rem;
        height: 44px;
    }
    
    .search-btn {
        height: 44px;
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    /* Additional content responsive styles */
    .section-title {
        font-size: 2rem;
    }
    
    .about-section, .story-section {
        padding: 2rem 0;
    }
    
    .about-content, .story-content {
        padding: 1rem;
        text-align: center;
    }
    
    .features-section {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .commitment-bg {
        padding: 2rem 1rem;
    }
    
    .commitment-content .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .homepage-hero {
        height: 750px;
    }
    
    .hero-content-with-search {
        top: 37%;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    }
    
    .hero-text {
        margin-bottom: 1rem;
    }
    
    .search-form-overlay {
        padding: 0.85rem;
    }
    
    .search-input {
        padding: 0.6rem;
        height: 42px;
        font-size: 0.85rem;
    }
    
    .search-btn {
        height: 42px;
        padding: 0 1rem;
        font-size: 0.85rem;
    }
    
    /* Additional content mobile styles */
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-content .lead, .story-content .lead {
        font-size: 1.1rem;
    }
    
    .about-content p, .story-content p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-img {
        width: 60px;
        height: 60px;
    }
    
    .commitment-content .lead {
        font-size: 1.1rem;
    }
    
    .commitment-content p {
        font-size: 1rem;
    }
}
.container {
    max-width: 1920px;
    height: auto;
}