/* ============================================
   Car Rental Page - Custom Styles
   ============================================ */

/* Car Hero Variant */
.sitelink-hero-car {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
    padding: 160px 0 100px;
    position: relative;
}

.sitelink-hero-car::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.sitelink-hero-car .sitelink-badge {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.sitelink-hero-car .sitelink-badge i {
    color: #818cf8;
}

.sitelink-hero-car h1 {
    font-size: 52px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.15;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-call-btn,
.hero-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hero-call-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.hero-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.hero-email-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.hero-email-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

/* ============================================
   Customer Reviews Section
   ============================================ */
.car-reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: linear-gradient(135deg, #fafbff, #f5f7ff);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 80px;
    color: rgba(99, 102, 241, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 15px;
}

.review-card blockquote {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.review-card > p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author .author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.review-author .author-info span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* ============================================
   Benefits Grid (Why Hire)
   ============================================ */
.car-benefits {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.benefit-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* Section Title inside intro */
.car-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* ============================================
   Newsletter Section
   ============================================ */
.car-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.car-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
}

.car-newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.newsletter-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-inputs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter-form .input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 4px 16px;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form .input-group i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    flex-shrink: 0;
}

.newsletter-form input[type="email"],
.newsletter-form select {
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form select {
    appearance: none;
    cursor: pointer;
}

.newsletter-form select option {
    background: #1e293b;
    color: #fff;
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
    font-family: 'Inter', sans-serif;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .sitelink-hero-car h1 { font-size: 40px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .sitelink-hero-car { padding: 130px 0 70px; }
    .sitelink-hero-car h1 { font-size: 30px; }
    .hero-actions { flex-direction: column; }
    .hero-call-btn, .hero-email-btn { width: 100%; justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .car-reviews, .car-benefits, .car-newsletter { padding: 60px 0; }
    .newsletter-content h2 { font-size: 26px; }
    .car-section-title { font-size: 26px; }
}
