/* ===== DESIGN SYSTEM & VARIABLES ===== */
:root {
    --color-primary: #0f172a;
    --color-accent: #f59e0b;
    --color-success: #10b981;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #334155;
    --color-text-light: #64748b;
    --font-heading: "Poppins", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1100px;
    }
}
/* ===== BASE ===== */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size:15px;
}
b, strong {
    font-weight: 600;
}
small, .small {
    font-size: 13px !important;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--color-primary); }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }


.truncate-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* ===== UTILITIES ===== */
.text-accent { color: var(--color-accent) !important; }
.bg-surface { background: var(--color-surface); }
.section-padding { padding: 5rem 0; }

.section-title { margin-bottom: 3.5rem; text-align: center; }
.section-title .badge-subtitle {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }

/* ===== BUTTONS ===== */
.btn-premium {
    background: var(--color-success);
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}
.btn-premium:hover { background: #059669; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4); }
.btn-outline-premium {
    background: transparent; color: var(--color-primary); font-weight: 600; padding: 0.8rem 2rem;
    border-radius: 50px; border: 2px solid #e2e8f0; transition: all 0.3s ease;
}
.btn-outline-premium:hover { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }

/* ===== HEADER ===== */
.site-header { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(226, 232, 240, 0.6); }
.navbar-brand { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--color-primary); }
.navbar-brand i { color: var(--color-accent); }
.nav-link { font-weight: 600; font-size: 0.9rem; color: var(--color-text); padding: 0.5rem 1rem !important; }
.nav-link:hover, .nav-link.active { color: var(--color-primary); }

/* ===== HERO ===== */
.hero-section { background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%); position: relative; overflow: hidden; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.2rem; }
.hero-title span { background: linear-gradient(135deg, var(--color-accent) 0%, #d97706 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-check-list { list-style: none; padding: 0; margin-bottom: 2rem; }
.hero-check-list li { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--color-primary); margin-right: 1.2rem; margin-bottom: 0.5rem; font-size: 0.95rem; }
.hero-check-list li i { color: var(--color-success); font-size: 1.1rem; }

/* Swiper Customization (Minimal) */
.swiper-pagination-bullet-active { background: var(--color-accent) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--color-primary) !important; background: rgba(255,255,255,0.8); width: 40px; height: 40px; border-radius: 50%; backdrop-filter: blur(4px); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1.2rem !important; font-weight: bold; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--color-primary); color: #fff !important; }

/* ===== FEATURES ===== */
.card-feature {
    background: var(--color-surface); padding: 2rem 1.5rem; border-radius: 1rem; border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05); transition: all 0.3s ease; height: 100%;
}
.card-feature:hover { transform: translateY(-5px); box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08); border-color: rgba(245, 158, 11, 0.3); }
.card-feature .icon-wrap {
    width: 56px; height: 56px; background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #d97706; margin-bottom: 1.2rem;
}
.card-feature h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-feature p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }

/* ===== CATEGORIES ===== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.card-category {
    background: var(--color-surface); border-radius: 1rem; overflow: hidden; border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column;
}
.card-category:hover { transform: translateY(-4px); box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08); }
.card-category .img-wrap { height: 150px; overflow: hidden; }
.card-category img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card-category:hover img { transform: scale(1.05); }
.card-category .card-body { padding: 1.25rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-category .card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.card-category .card-text { font-size: 0.85rem; color: var(--color-text-light); margin: 0; flex-grow: 1; }

/* ===== STEPS ===== */
.step-item { text-align: center; padding: 1.5rem 1rem; position: relative; }
.step-number {
    width: 56px; height: 56px; background: var(--color-primary); color: var(--color-accent); font-family: var(--font-heading);
    font-weight: 800; font-size: 1.3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
@media (min-width: 992px) {
    .step-item:not(:last-child)::after { content: ""; position: absolute; top: 46px; right: -50%; width: 100%; height: 2px; background: #e2e8f0; z-index: 0; }
}
.step-item h6 { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.85rem; color: var(--color-text-light); margin: 0; }

/* ===== FORM ===== */
.form-premium-wrapper { background: var(--color-surface); border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1); border: 1px solid rgba(226, 232, 240, 0.8); }
.form-section-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-light); font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #e2e8f0; }
/* .form-control, .form-select { border-radius: 0.75rem; padding: 0.75rem 1rem; border: 1.5px solid #e2e8f0; font-size: 0.95rem; background: #f8fafc; } */
/* .form-control:focus, .form-select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1); background: #fff; } */
/* .form-label { font-weight: 600; font-size: 0.85rem; color: var(--color-primary); margin-bottom: 0.3rem; } */

/* ===== TESTIMONIALS (Swiper Card) ===== */
.card-testimonial {
    background: var(--color-surface); padding: 1.8rem; border-radius: 1rem; border: 1px solid rgba(226, 232, 240, 0.6); height: 100%; position: relative;
}
.card-testimonial::before { content: '"'; position: absolute; top: 0.5rem; right: 1.2rem; font-size: 3.5rem; font-family: serif; color: rgba(245, 158, 11, 0.15); line-height: 1; }
.card-testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: #e2e8f0; flex-shrink: 0; overflow: hidden; border: 2px solid #fff; }
.card-testimonial .stars { color: var(--color-accent); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.card-testimonial p { font-size: 0.9rem; color: var(--color-text); font-style: italic; margin: 0; }

/* ===== BLOG (Swiper Card) ===== */
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.blog-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-primary); background: #f1f5f9; padding: 0.2rem 0.6rem; border-radius: 4px; }
.blog-date { font-size: 0.75rem; color: var(--color-text-light); }
.blog-link { color: var(--color-accent); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-link:hover { gap: 0.5rem; color: #d97706; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--color-primary); border-radius: 1.5rem; padding: 4rem 2rem; position: relative; overflow: hidden; color: #fff; }
.cta-banner::before { content: ""; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.8); }

/* ===== FOOTER ===== */
.site-footer { background: #020617; color: #94a3b8; padding: 4rem 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.site-footer h5 { color: #f8fafc; font-weight: 700; font-size: 1rem; margin-bottom: 1.2rem; font-family: var(--font-heading); }
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer .footer-link { display: block; padding: 0.25rem 0; font-size: 0.9rem; }
.site-footer .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; transition: all 0.2s ease; color: #f8fafc; margin-right: 0.4rem; }
.site-footer .social-icon:hover { background: var(--color-accent); color: #000; }

/* ===== FLOATING BUTTONS ===== */
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; border: 3px solid #fff; }
.float-btn:hover { transform: scale(1.1) translateY(-3px); }
.float-wa { background: #25d366; color: #fff; }
.float-phone { background: var(--color-primary); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-padding { padding: 3.5rem 0; }
    .form-premium-wrapper { padding: 1.5rem; }
    .cta-banner { padding: 3rem 1.5rem; }
    .step-item:not(:last-child)::after { display: none; }
}





.content h2, .content h3 {
    font-size: 20px;
    font-weight: 600;
}