* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    background: linear-gradient(135deg, #ef4444, #f97316);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: white;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ef4444;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.btn-outline:hover {
    background: #ef4444;
    color: white;
}

.btn-outline-service {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 14px;
    padding: 10px 16px;
}

.btn-outline-service:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.btn-white {
    background: white;
    color: #ef4444;
    font-size: 18px;
    padding: 16px 32px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 18px;
    padding: 16px 32px;
}

.btn-outline-white:hover {
    background: white;
    color: #ef4444;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef2f2, #fef3f2, #fefce8);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbf24;
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #333;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yellow-text {
    color: #fbbf24;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    gap: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.feature-dot.green {
    background: #10b981;
}

.feature-dot.blue {
    background: #3b82f6;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-container {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.notification {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3;
}

.notification.top {
    top: 16px;
    right: -16px;
    animation: bounce 2s infinite;
}

.notification.bottom {
    bottom: -16px;
    left: -16px;
}

.notification-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* How It Works */
.how-it-works {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.step-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.step-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.step-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Services */
.services {
    background: linear-gradient(135deg, #f9fafb, #fef2f2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card.popular {
    border: 2px solid #ef4444;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.service-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.service-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.service-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.service-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.service-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #fef2f2, #fef3f2);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

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

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.rating-value {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-service {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.testimonials-stats {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.stats-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
    padding: 24px 32px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.stats-stars {
    display: flex;
    gap: 2px;
}

.stats-stars .star {
    font-size: 20px;
    color: #fbbf24;
}

.stats-number {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.stats-label {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ef4444, #dc2626, #f97316);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
}

.cta-description {
    font-size: 20px;
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cta-feature-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.cta-feature-desc {
    font-size: 14px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-benefits {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: bold;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ef4444;
    color: white;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ef4444;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.footer-contact-item svg {
    color: #ef4444;
}

.newsletter-description {
    color: #d1d5db;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #374151;
    color: white;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-button {
    padding: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: #ef4444;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #10b981;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.notification-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-img {
        width: 300px;
        height: 300px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .hero-img {
        width: 250px;
        height: 250px;
    }
}
