/* Helios Pages Generator - Frontend Styles */

/* Hero Section */
.helios-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.helios-hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    text-align: center;
}

.helios-hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
    line-height: 1.2;
}

.helios-hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

/* CTA Buttons */
.helios-cta-button {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.helios-whatsapp-cta {
    background: #25D366;
    color: white;
}

.helios-whatsapp-cta:hover {
    background: #1fb854;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.helios-phone-cta {
    background: #d4af37;
    color: black;
}

.helios-phone-cta:hover {
    background: #c99e2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Service Cards */
.helios-service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.helios-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.helios-service-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 20px;
}

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

/* Pricing Table */
.helios-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.helios-pricing-table thead {
    background: #d4af37;
    color: black;
}

.helios-pricing-table th {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: bold;
}

.helios-pricing-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.helios-pricing-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.helios-pricing-table tbody tr:hover {
    background: #f0f0f0;
}

/* FAQ Section */
.helios-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.helios-faq-item h4 {
    color: #333;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.helios-faq-item h4:hover {
    color: #d4af37;
}

.helios-faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Feature List */
.helios-feature-list {
    list-style: none;
    padding: 0;
}

.helios-feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
}

.helios-feature-list li:before {
    content: '✓';
    color: #d4af37;
    font-size: 24px;
    margin-right: 15px;
    font-weight: bold;
}

.helios-feature-list h4 {
    color: #333;
    margin: 0 0 5px 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .helios-hero-overlay {
        padding: 20px;
    }
    
    .helios-hero-overlay h1 {
        font-size: 32px;
    }
    
    .helios-hero-overlay p {
        font-size: 16px;
    }
    
    .helios-cta-button {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .helios-service-card {
        margin-bottom: 20px;
    }
    
    .helios-pricing-table {
        font-size: 14px;
    }
    
    .helios-pricing-table th,
    .helios-pricing-table td {
        padding: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.helios-service-card,
.helios-faq-item {
    animation: fadeIn 0.5s ease-out;
}

/* Print Styles */
@media print {
    .helios-cta-button {
        display: none;
    }
}
