/**
 * Homepage Specific Styles
 * 
 * Modern styling for the WHMCS homepage
 */

/* Feature Cards Section */

.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    font-size: 48px;
    color: #ff8500;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-box .btn {
    align-self: flex-start;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: #fff;
    color: #ff8500;
    border: 2px solid #ff8500;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-box .btn:hover {
    background-color: #ff8500;
    color: #fff;
}

/* Domain Pricing Table */
.domain-pricing-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.domain-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.domain-pricing-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.domain-pricing-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.domain-pricing-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.domain-pricing-table .header {
    background: linear-gradient(135deg, #ff8500 0%, #e67700 100%);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.domain-pricing-table .header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.domain-pricing-table .domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.domain-pricing-table .domain-item:last-child {
    border-bottom: none;
}

.domain-pricing-table .domain-item:hover {
    background-color: #f8f9fa;
}

.domain-pricing-table .domain-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.domain-pricing-table .domain-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff8500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.testimonials-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
    font-size: 18px;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 60px;
    color: #ff8500;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
}

.testimonial-card .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-card .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.testimonial-card .author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    /* padding: 80px 0; */
    /* background: linear-gradient(135deg, #ff8500 0%, #e67700 100%); */
    color: #fff;
    text-align: center;
    border-radius: 15px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background-color: #fff;
    color: #ff8500;
}

.cta-btn-primary:hover {
    background-color: #f8f9fa;
    color: #e67700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-box {
        padding: 20px;
    }
    
    .feature-box .icon {
        font-size: 36px;
    }
    
    .feature-box h3 {
        font-size: 18px;
    }
    
    .domain-pricing-header h2,
    .testimonials-header h2,
    .cta-content h2 {
        font-size: 28px;
    }
    
    .domain-pricing-header p,
    .testimonials-header p,
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}