:root {
    --primary: #0056b3;
    --primary-light: #007bff;
    --accent: #ff6b35;
    --text: #333;
    --text-light: #666;
    --bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background: var(--bg); }
.bg-dark { background: linear-gradient(135deg, #0056b3, #003d80); color: white; }

.highlight { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(0,86,179,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,86,179,0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-block { width: 100%; display: block; text-align: center; }

/* Header */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--primary); font-size: 1.8rem; }
.logo span { color: var(--primary); }

.nav-menu a {
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover { color: var(--primary); }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f2ff 100%);
    padding-top: 130px;
    padding-bottom: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
}

.badge {
    background: #fff0e6;
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
}

.hero-btns { display: flex; gap: 15px; margin-top: 30px; }

.trust-strip {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.trust-strip div { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.9rem; }
.trust-strip i { color: var(--primary); }

/* Inquiry Form */
.inquiry-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.inquiry-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.inquiry-form input:focus, .inquiry-form select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

/* Modules Grid */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.module-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(0,86,179,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #eee;
    position: relative;
    transition: 0.3s;
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card .tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin: 15px 0; }
.duration { color: var(--text-light); margin-bottom: 20px; }

.price-card ul { text-align: left; margin: 20px 0; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid #eee; }
.price-card ul li.disabled { opacity: 0.5; text-decoration: line-through; }

/* Placement Section */
.placement-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item h3 { font-size: 2.5rem; font-weight: 700; }
.stat-item p { opacity: 0.8; }

.certification-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.certification-box i { font-size: 3rem; margin-bottom: 20px; color: #ffcc00; }

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars { color: #ffc107; margin-bottom: 15px; }
.profile { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 10px; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.faq-q {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}
.faq-a p { padding: 20px; color: var(--text-light); }
.faq-item.active .faq-a { max-height: 200px; }
.faq-item.active .faq-q i { transform: rotate(45deg); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.info-item i { font-size: 1.2rem; color: var(--primary); margin-top: 5px; }
.socials { display: flex; gap: 15px; margin-top: 20px; }
.socials a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.socials a:hover { background: var(--primary); color: white; border-color: var(--primary); }

.contact-form-map { display: grid; gap: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; }

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 40px 0;
    text-align: center;
}
footer p { opacity: 0.7; font-size: 0.9rem; margin-bottom: 5px; }

/* Floating Buttons */
.float-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btns a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.float-btns a:hover { transform: scale(1.1); }
.float-btns .whatsapp { background: #25D366; }
.float-btns .call { background: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .btn-nav { display: none; }
    .hamburger { display: flex; }
    
    /* Mobile Menu Active State */
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .hero-content, .about-grid, .placement-grid, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 { font-size: 2.2rem; }
    .trust-strip { flex-direction: column; gap: 10px; }
    .hero-btns { flex-direction: column; }
    
    .stats-grid { justify-content: center; }
    .price-card.featured { transform: scale(1); }
}