/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Header */
header { background: #004aad; color: #fff; padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
header .logo { font-size: 24px; font-weight: bold; }
header nav ul { display: flex; list-style: none; gap: 20px; }
header nav ul li a { color: #fff; text-decoration: none; padding: 8px 12px; border-radius: 4px; transition: 0.3s; }
header nav ul li a:hover, header nav ul li a.active { background: #fff; color: #004aad; }
.mobile-nav-toggle { display: none; font-size: 24px; cursor: pointer; }
/* Mobile Slide Menu */
header nav {
    transition: transform 0.3s ease-in-out;
}
/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slider .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-slider h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-slider p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-slider .btn {
    background: #ff5722;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    header nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #004aad;
        transform: translateX(-100%);
        padding-top: 20px;
    }

    header nav.active {
        transform: translateX(0);
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    header nav ul li a {
        font-size: 18px;
        padding: 12px;
        display: block;
    }
}

/* Pricing Page Extra */
.pricing-page {
    padding: 120px 0;
    background: #f4f7ff;
    text-align: center;
}

.pricing-page .subtitle {
    margin-bottom: 40px;
    color: #555;
}

.pricing-cards.advanced .card {
    position: relative;
}

.pricing-cards .price {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.pricing-cards .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff5722;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.pricing-cards .popular {
    border: 2px solid #ff5722;
    transform: scale(1.05);
}

/* Hero */
.hero { background: url('../images/hero.jpg') center/cover no-repeat; color: #fff; height: 80vh; display: flex; align-items: center; text-align: center; justify-content: center; flex-direction: column; }
.hero h1 { font-size: 48px; margin-bottom: 20px; }
.hero p { font-size: 18px; margin-bottom: 20px; }
.hero .btn { background: #ff5722; color: #fff; padding: 10px 20px; border-radius: 4px; text-decoration: none; }

/* Services */
.services { padding: 100px 0; text-align: center; }
.services h2 { font-size: 36px; margin-bottom: 40px; }
.service-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.service-cards .card { background: #f7f7f7; padding: 30px; border-radius: 8px; width: 250px; transition: 0.3s; }
.service-cards .card:hover { transform: translateY(-10px); }
.service-cards .card i { font-size: 40px; margin-bottom: 15px; color: #004aad; }
.service-cards .card h3 { margin-bottom: 10px; }

/* Pricing */
.pricing { padding: 100px 0; background: #e8f0fe; text-align: center; }
.pricing h2 { font-size: 36px; margin-bottom: 40px; }
.pricing-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pricing-cards .card { background: #fff; padding: 30px; border-radius: 8px; width: 250px; transition: 0.3s; }
.pricing-cards .card:hover { transform: translateY(-10px); }
.pricing-cards .card h3 { margin-bottom: 10px; }
.pricing-cards .card p { font-size: 24px; margin-bottom: 20px; }
.pricing-cards .card ul { list-style: none; margin-bottom: 20px; }
.pricing-cards .card ul li { margin-bottom: 10px; }

/* Footer */
footer { background: #004aad; color: #fff; padding: 40px 0; text-align: center; }
footer .social a { color: #fff; margin: 0 10px; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: #fff; padding: 15px; border-radius: 50%; font-size: 24px; z-index: 100; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); }

/* Responsive */
@media (max-width: 768px) {
    header nav { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: #004aad; }
    header nav ul { flex-direction: column; }
    .mobile-nav-toggle { display: block; }
}
