/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    color: #0d6efd !important;
}

.nav-link {
    font-weight: 500;
}

.nav-link.active {
    color: #0d6efd !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    color: white;
    padding: 80px 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-box {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd !important;
}

/* Hero Section dengan Background Image */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    z-index: 1;
}

/* Overlay hitam transparan supaya teks terbaca */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Subject Cards */
.subject-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.subject-img {
    height: 200px;
    object-fit: cover;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.pricing-header {
    background: #f8f9fa;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}
/* Highlight untuk paket Gold (Popular) */
.pricing-card.popular {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
    z-index: 2;
}
.badge-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

/* --- Top 5 Reasons Section Custom Styles --- */

/* Base card style */
.reason-card {
    height: 100%;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 25px 20px;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.reason-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    text-align: left;
}

.reason-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: start;
}

/* Custom Checkmark Icon per list item */
.reason-list li::before {
    content: "\F26A"; /* Bootstrap Icon code for check-lg */
    font-family: bootstrap-icons;
    font-weight: bold;
    margin-right: 8px;
    margin-top: 2px;
}

/* Color Variations (Background & Text Colors) */

/* 1. Pink Theme */
.theme-pink { background-color: #fff0f3; border-color: #ffc9d6; }
.theme-pink .reason-icon, .theme-pink h5 { color: #d63384; }
.theme-pink .reason-list li::before { color: #d63384; }

/* 2. Purple Theme */
.theme-purple { background-color: #f3f0ff; border-color: #d0c4f7; }
.theme-purple .reason-icon, .theme-purple h5 { color: #6f42c1; }
.theme-purple .reason-list li::before { color: #6f42c1; }

/* 3. Green Theme */
.theme-green { background-color: #f0fff4; border-color: #bbf7d0; }
.theme-green .reason-icon, .theme-green h5 { color: #198754; }
.theme-green .reason-list li::before { color: #198754; }

/* 4. Blue Theme */
.theme-blue { background-color: #f0f7ff; border-color: #bae0ff; }
.theme-blue .reason-icon, .theme-blue h5 { color: #0d6efd; }
.theme-blue .reason-list li::before { color: #0d6efd; }

/* 5. Orange Theme */
.theme-orange { background-color: #fff9f0; border-color: #ffe0b2; }
.theme-orange .reason-icon, .theme-orange h5 { color: #fd7e14; }
.theme-orange .reason-list li::before { color: #fd7e14; }