/* WhatsApp Preview Styles */
.whatsapp-preview {
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.whatsapp-header {
    background: #075E54;
    color: #fff;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-header i {
    font-size: 1.2rem;
}

.whatsapp-body {
    background: #E5DDD5;
    padding: 1rem;
    min-height: 200px;
}

.message-bubble {
    background: #fff;
    padding: 0.75rem;
    border-radius: 7.5px;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.message-text {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.whatsapp-divider {
    border: none;
    border-top: 1px solid #E1E1E1;
    margin: 0.5rem 0;
}

.message-link {
    margin: 0.5rem 0;
    text-align: center;
}

.message-link a {
    color: #0482C7;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.message-link a i {
    font-size: 1.1em;
}

.message-link a:hover {
    text-decoration: underline;
}

.message-time {
    font-size: 0.75rem;
    color: #667781;
    margin-top: 0.25rem;
    text-align: left;
    display: inline-block;
}

.message-status {
    font-size: 0.75rem;
    color: #667781;
    margin-top: 0.25rem;
    text-align: right;
    display: inline-block;
    float: left;
}

/* ROI Calculator Styles */
.roi-calculator {
    background: #f8f9fa;
}

.roi-calculator .form-range {
    height: 8px;
}

.roi-calculator .form-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
}

.roi-calculator .form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
}

/* Benefits */
.benefit-icon {
    flex-shrink: 0;
}

/* Video wrapper */
.video-wrapper {
    position: relative;
}

/* Step cards */
.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Journey Section Styles */
.journey-section {
    position: relative;
}

.journey-section .timeline {
    position: relative;
}

.journey-section .timeline-item {
    position: relative;
    padding-right: 0;
}

.journey-section .timeline-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.journey-section .timeline-icon i {
    font-size: 1.5rem;
}

.journey-section .metric-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.journey-section .metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z-index-10 {
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-preview {
        width: 100%;
        max-width: 320px;
    }
    
    .journey-section .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .journey-section h2 {
        font-size: 2rem;
    }
}
