/* Femate App Website Styles */

/* General Styles */
:root {
    --primary-color: #8a2be2;
    --primary-light: #9d4edd;
    --primary-dark: #6a0dad;
    --secondary-color: #ff6b6b;
    --secondary-light: #ff8c8c;
    --secondary-dark: #ff4949;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
}

/* Banner Section */
.femate-banner {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.banner-content {
    padding-right: 30px;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.banner-content .subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.banner-content .description {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-light);
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    color: var(--white);
}

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

.banner-image {
    position: relative;
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.femate-features {
    padding: 80px 0;
    background-color: var(--white);
}

.feature-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.1);
}

.feature-item .icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 28px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* App Showcase Section */
.femate-showcase {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.showcase-slider {
    padding: 30px 0;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(138, 43, 226, 0.8);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Testimonials Section */
.femate-testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    height: 100%;
}

.testimonial-item .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-item .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-item .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item .user-details h4 {
    margin: 0;
    font-size: 18px;
}

.testimonial-item .user-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-item .rating {
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-item .comment {
    font-style: italic;
    color: var(--text-light);
}

/* Download Section */
.femate-download {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
}

.download-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.qrcode-container {
    text-align: center;
}

.qrcode {
    background-color: var(--white);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.app-stores {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-button {
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.store-button i {
    font-size: 24px;
    margin-right: 15px;
}

.store-info span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.store-info strong {
    font-size: 16px;
}

.download-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* About Section */
.femate-about {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.company-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

/* Contact Section */
.femate-contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .femate-banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content .subtitle {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-wrapper {
        padding: 20px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 