/**
 * Blog CTAs Stylesheet
 * File: assets/css/blog-cta.css
 */

/* ============================================
   Shared CTA Styles
   ============================================ */
.blog-cta {
    margin: 48px 0;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-cta-icon {
    flex-shrink: 0;
    font-size: 48px;
}

.blog-cta-text {
    flex: 1;
}

.blog-cta-text h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.blog-cta-text p {
    margin: 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   CTA 1: WhatsApp Booking (Primary)
   ============================================ */
.blog-cta-whatsapp {
    background: linear-gradient(135deg, #d4f8e8 0%, #b9f5d0 100%);
    border: 2px solid #25d366;
}

.blog-cta-button-whatsapp {
    background: #25d366;
    color: white !important;
}

.blog-cta-button-whatsapp:hover {
    background: #20ba5a;
}

/* ============================================
   CTA 2: Booking Form (Secondary)
   ============================================ */
.blog-cta-form {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border: 2px solid #667eea;
}

.blog-cta-button-form {
    background: #667eea;
    color: white !important;
}

.blog-cta-button-form:hover {
    background: #5568d3;
}

.blog-cta-button-form svg {
    transition: transform 0.3s ease;
}

.blog-cta-button-form:hover svg {
    transform: translateX(4px);
}

/* ============================================
   CTA 3: Route Explorer
   ============================================ */
.blog-cta-routes {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 40px 32px;
}

.blog-cta-header {
    text-align: center;
    margin-bottom: 32px;
}

.blog-cta-header h3 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.blog-cta-header p {
    margin: 0;
    font-size: 16px;
    color: #4a5568;
}

.blog-cta-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.route-card:hover {
    background: #edf2f7;
    border-color: #667eea;
    transform: translateX(4px);
}

.route-info {
    flex: 1;
}

.route-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.route-meta {
    font-size: 14px;
    color: #718096;
}

.route-arrow {
    font-size: 24px;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.route-card:hover .route-arrow {
    transform: translateX(4px);
}

.blog-cta-button-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.blog-cta-button-secondary:hover {
    background: #667eea;
    color: white !important;
    transform: translateY(-2px);
}

/* ============================================
   CTA 4: Custom Package
   ============================================ */
.blog-cta-custom {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 2px solid #c084fc;
    padding: 48px 40px;
}

.blog-cta-custom-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.custom-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.blog-cta-custom-left h3 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.blog-cta-custom-left > p {
    margin: 0 0 24px 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.custom-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #2d3748;
}

.custom-features svg {
    flex-shrink: 0;
}

.custom-contact-box {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.custom-contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.custom-contact-box h4 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.custom-contact-box > p {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #718096;
}

.custom-contact-button {
    display: block;
    padding: 14px 24px;
    background: #25d366;
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.custom-contact-button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.custom-divider {
    position: relative;
    text-align: center;
    margin: 16px 0;
}

.custom-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.custom-divider span {
    position: relative;
    background: white;
    padding: 0 12px;
    font-size: 14px;
    color: #718096;
}

.custom-email-button {
    display: block;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-email-button:hover {
    background: #667eea;
    color: white !important;
    transform: translateY(-2px);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .blog-cta-custom-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-cta {
        padding: 24px 20px;
        margin: 32px 0;
    }
    
    .blog-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .blog-cta-icon {
        font-size: 40px;
    }
    
    .blog-cta-text h3 {
        font-size: 20px;
    }
    
    .blog-cta-text p {
        font-size: 14px;
    }
    
    .blog-cta-button {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 12px 24px;
    }
    
    /* Routes */
    .blog-cta-routes {
        padding: 32px 20px;
    }
    
    .blog-cta-header h3 {
        font-size: 22px;
    }
    
    .blog-cta-routes-grid {
        grid-template-columns: 1fr;
    }
    
    .route-card {
        padding: 16px 20px;
    }
    
    .route-name {
        font-size: 15px;
    }
    
    .route-meta {
        font-size: 13px;
    }
    
    /* Custom Package */
    .blog-cta-custom {
        padding: 32px 20px;
    }
    
    .blog-cta-custom-left h3 {
        font-size: 22px;
    }
    
    .custom-features li {
        font-size: 14px;
    }
    
    .custom-contact-box {
        padding: 24px 20px;
    }
    
    .custom-contact-icon {
        font-size: 40px;
    }
    
    .custom-contact-box h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blog-cta-text h3 {
        font-size: 18px;
    }
    
    .blog-cta-header h3 {
        font-size: 20px;
    }
    
    .blog-cta-custom-left h3 {
        font-size: 20px;
    }
}
