/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #25D366;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.price {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.benefit i {
    margin-right: 8px;
    color: #FFD700;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-primary {
    background: #25D366;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-primary i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-primary.large {
    padding: 24px 48px;
    font-size: 20px;
}

.urgency {
    display: flex;
    align-items: center;
    color: #FFD700;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.urgency i {
    margin-right: 8px;
    color: #FF6B6B;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.whatsapp-chat {
    height: 100%;
    background: #ECE5DD;
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-status {
    background: #25D366;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: auto;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    color: #333;
}

.message.received {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 16px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
}

.process-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

.testimonial-author strong {
    color: #333;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #25D366;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-answer {
    padding-bottom: 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price-highlight {
    margin-bottom: 40px;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 18px;
    margin-right: 15px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
}

.guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFD700;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info .logo {
    margin-bottom: 15px;
}

.footer-info p {
    color: #ccc;
}

.footer-contact h4 {
    margin-bottom: 20px;
    color: #25D366;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    margin-right: 10px;
    color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    animation: bounce 2s infinite;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.33); }
    80%, 100% { transform: scale(2.4); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
        margin-top: 0;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Fix header overlap on mobile */
    body {
        padding-top: 0;
    }
    
    .header {
        position: relative;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .btn-primary.large {
        padding: 18px 36px;
        font-size: 18px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .features h2,
    .process h2,
    .testimonials h2,
    .faq h2 {
        font-size: 28px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .header {
        position: relative;
        padding: 10px 0;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Reimbursement Form Styles */
.reimbursement-form {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: #666;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.reimbursement-form-content {
    padding: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-row.two-columns {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.form-group label i {
    margin-right: 8px;
    color: #25D366;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
}

.file-input-wrapper {
    position: relative;
    cursor: pointer;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-display {
    border: 2px dashed #e1e5e9;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.file-input-display:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.file-input-display i {
    font-size: 48px;
    color: #25D366;
    margin-bottom: 15px;
    display: block;
}

.file-text {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.file-input-display small {
    color: #666;
    font-size: 14px;
}

.file-selected .file-input-display {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.file-selected .file-input-display i {
    color: #128C7E;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-secondary i {
    margin-right: 8px;
}

.btn-primary {
    border: none;
    cursor: pointer;
}

.form-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #e1e5e9;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.info-item i {
    color: #25D366;
    font-size: 16px;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-content {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
}

.success-content i {
    font-size: 64px;
    color: #25D366;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.success-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .reimbursement-form {
        padding: 100px 0 60px;
    }
    
    .form-header h1 {
        font-size: 28px;
    }
    
    .form-header p {
        font-size: 16px;
    }
    
    .reimbursement-form-content {
        padding: 40px 30px;
    }
    
    .form-row.two-columns {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .file-input-display {
        padding: 30px 15px;
    }
    
    .file-input-display i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .reimbursement-form-content {
        padding: 30px 20px;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
    
    .success-content {
        padding: 40px 30px;
        margin: 15px;
    }
    
    .success-content i {
        font-size: 48px;
    }
    
    .success-content h3 {
        font-size: 20px;
    }
}
