/* 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;
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
}

.btn-white {
    background: white;
    color: #3B82F6;
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    font-size: 18px;
    padding: 14px 32px;
}

.btn-outline:hover {
    background: white;
    color: #3B82F6;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.logo-text p {
    font-size: 14px;
    color: #6b7280;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3B82F6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    background-image: url("../banner-1.png");
}

.banner-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.floating-circle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.circle-1 {
    width: 128px;
    height: 128px;
    top: 40px;
    left: 40px;
}

.circle-2 {
    width: 96px;
    height: 96px;
    bottom: 40px;
    right: 40px;
    animation-delay: 1s;
}

.circle-3 {
    width: 64px;
    height: 64px;
    top: 50%;
    left: 33%;
    animation-delay: 2s;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.banner-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 32px;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-item p {
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.service-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.service-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

.service-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.service-icon i {
    font-size: 32px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 14px;
}

.info-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.info-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.info-text ul {
    list-style: none;
    color: #6b7280;
}

.info-text li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 50%;
    margin-right: 12px;
}

.stat-box {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.stat-box h4 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

.about-highlight {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    border-radius: 16px;
    padding: 48px;
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.highlight-text h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.highlight-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.highlight-text ul {
    list-style: none;
}

.highlight-text li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.highlight-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.contact-icon {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i {
    font-size: 24px;
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-info {
    font-weight: 500;
    color: #3B82F6;
    margin-bottom: 4px;
}

.contact-desc {
    font-size: 12px;
    color: #6b7280;
}

.whatsapp-cta {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.whatsapp-content {
    max-width: 640px;
    margin: 0 auto;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.whatsapp-icon i {
    font-size: 32px;
}

.whatsapp-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #374151;
}

.whatsapp-content p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.whatsapp-content small {
    color: #6b7280;
    margin-top: 16px;
    display: block;
}

.faq-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.faq-item p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-logo p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-love {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-love i {
    color: #ef4444;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #3B82F6;
    width: 16px;
}

.contact-item span {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 64px;
    right: 0;
    background: #374151;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 16px;
    border: 4px solid transparent;
    border-top-color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.25rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content,
    .highlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .highlight-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-highlight {
        padding: 32px 24px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .service-card,
    .contact-card,
    .faq-item {
        padding: 20px;
    }
    
    .info-section,
    .whatsapp-cta {
        padding: 24px;
    }
}