/* ===== SOFTTECHZ DIGITAL SOLUTION — MAIN STYLESHEET ===== */
:root {
    --blue: #1a3ed4;
    --blue-light: #3a5ef4;
    --blue-dark: #0f2aa0;
    --orange: #e05a1a;
    --orange-light: #f07030;
    --orange-dark: #b84010;
    --black: #050a1a;
    --dark: #0d1220;
    --dark-card: #121929;
    --dark-card2: #1a2438;
    --white: #ffffff;
    --off-white: #f0f4ff;
    --text-muted: #7a8499;
    --border: rgba(26,62,212,0.2);
    --border-orange: rgba(224,90,26,0.25);
    --shadow-blue: 0 8px 32px rgba(26,62,212,0.2);
    --shadow-orange: 0 8px 32px rgba(224,90,26,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--dark); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.orange { color: var(--orange); }
.blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }

/* ===== NAVBAR ===== */
.sds-navbar { background: rgba(5,10,26,0.97) !important; backdrop-filter: blur(12px); padding: 0.8rem 0; transition: all 0.3s ease; border-bottom: 1px solid var(--border); }
.sds-navbar.scrolled { padding: 0.5rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.sds-logo img { height: 48px; width: auto; }
.sds-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: -0.3px; }
.sds-logo-text span { color: var(--orange); }
.sds-navbar .nav-link { color: rgba(255,255,255,0.82) !important; font-weight: 500; font-size: 0.9rem; padding: 0.5rem 0.9rem !important; transition: color 0.3s; position: relative; }
.sds-navbar .nav-link:hover { color: var(--orange) !important; }
.sds-navbar .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--orange); transition: all 0.3s ease; }
.sds-navbar .nav-link:hover::after { left: 0.9rem; right: 0.9rem; }
.navbar-toggler { border: 1px solid var(--orange); padding: 4px 8px; }
.toggler-icon { color: var(--orange); font-size: 1.1rem; }
.sds-dropdown { background: var(--dark-card) !important; border: 1px solid var(--border) !important; border-radius: 8px !important; min-width: 240px; }
.sds-dropdown .dropdown-item { color: rgba(255,255,255,0.8) !important; padding: 0.5rem 1.2rem; font-size: 0.88rem; transition: all 0.2s; }
.sds-dropdown .dropdown-item:hover { background: rgba(26,62,212,0.1) !important; color: var(--orange) !important; }
.sds-dropdown .dropdown-divider { border-color: var(--border); }

/* ===== BUTTONS ===== */
.sds-btn-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff !important; font-weight: 700; padding: 0.6rem 1.6rem; border-radius: 6px; border: none; font-size: 0.9rem; transition: all 0.3s ease; text-decoration: none; display: inline-block; }
.sds-btn-orange:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); background: linear-gradient(135deg, var(--orange-light), var(--orange)); color: #fff !important; }
.sds-btn-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff !important; font-weight: 700; padding: 0.6rem 1.6rem; border-radius: 6px; border: none; font-size: 0.9rem; transition: all 0.3s ease; text-decoration: none; display: inline-block; }
.sds-btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); color: #fff !important; }
.sds-btn-outline { border: 1px solid var(--orange); color: var(--orange) !important; background: transparent; padding: 0.6rem 1.6rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; text-decoration: none; display: inline-block; }
.sds-btn-outline:hover { background: var(--orange); color: #fff !important; }
.sds-btn-outline-blue { border: 1px solid var(--blue); color: var(--blue) !important; background: transparent; padding: 0.6rem 1.6rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; text-decoration: none; display: inline-block; }
.sds-btn-outline-blue:hover { background: var(--blue); color: #fff !important; }

/* ===== HERO ===== */
.sds-hero { min-height: 100vh; background: linear-gradient(135deg, #000510 0%, #050d2a 50%, #0a1535 100%); display: flex; align-items: center; position: relative; overflow: hidden; padding: 7rem 0 5rem; }
.hero-blob-blue { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(26,62,212,0.12) 0%, transparent 70%); top: -150px; right: -100px; animation: pulse-hero 8s ease-in-out infinite; }
.hero-blob-orange { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(224,90,26,0.08) 0%, transparent 70%); bottom: -50px; left: 100px; animation: pulse-hero 6s ease-in-out infinite reverse; }
@keyframes pulse-hero { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.15);opacity:1} }
.hero-badge { display: inline-block; background: rgba(26,62,212,0.15); border: 1px solid var(--border); color: #7a9fff; padding: 0.4rem 1.2rem; border-radius: 4px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 1px; text-transform: uppercase; }
.hero-title { font-size: clamp(2.4rem,5vw,4.2rem); color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; }
.hero-title .highlight { color: var(--orange); }
.hero-title .highlight-blue { color: #7a9fff; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; max-width: 560px; }
.hero-stat-num { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 900; color: var(--orange); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }

/* ===== SECTION ===== */
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem,3vw,2.6rem); color: var(--dark); }
.section-title-white { color: var(--white); }
.section-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 2px; margin: 1rem 0 1.5rem; }
.section-divider.center { margin: 1rem auto 1.5rem; }
.section-divider.blue { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }

/* ===== SERVICE CARDS ===== */
.service-card { background: var(--white); border-radius: 10px; padding: 1.8rem; border: 1px solid rgba(0,0,0,0.07); border-top: 3px solid transparent; transition: all 0.35s ease; height: 100%; position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-top-color: var(--orange); }
.service-icon-wrap { width: 56px; height: 56px; background: linear-gradient(135deg,rgba(26,62,212,0.1),rgba(224,90,26,0.1)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1rem; }
.service-card h5 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }
.service-card-dark { background: var(--dark-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.8rem; transition: all 0.35s; height: 100%; }
.service-card-dark:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.service-card-dark h5 { color: var(--white); font-size: 1rem; }
.service-card-dark p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ===== PROJECT / PORTFOLIO ===== */
.project-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.35s; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: var(--blue-light); }
.project-img { height: 200px; overflow: hidden; background: var(--dark-card2); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.project-body { padding: 1.5rem; }
.project-cat { font-size: 0.72rem; color: var(--orange); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.project-title { color: var(--white); font-size: 1.05rem; margin: 0.4rem 0 0.6rem; }
.project-stat-val { font-family: 'Playfair Display',serif; font-size: 1.5rem; color: var(--orange); font-weight: 700; display: block; }
.project-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.tech-badge { background: rgba(26,62,212,0.12); border: 1px solid var(--border); color: #7a9fff; padding: 0.2rem 0.65rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; display: inline-block; }

/* ===== TECH STACK ===== */
.tech-item { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 10px; padding: 1.2rem; text-align: center; transition: all 0.3s; }
.tech-item:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.tech-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.tech-name { font-size: 0.82rem; font-weight: 600; color: var(--dark); }

/* ===== TEAM CARD ===== */
.team-card { background: var(--white); border-radius: 10px; overflow: hidden; transition: all 0.35s; border: 1px solid rgba(0,0,0,0.06); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.team-img-wrapper { height: 240px; overflow: hidden; background: var(--dark-card); }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img-wrapper img { transform: scale(1.05); }
.team-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.team-avatar-big { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; font-weight: 700; font-family: 'Playfair Display',serif; }
.team-info { padding: 1.3rem; }
.team-name { font-size: 1rem; color: var(--dark); margin-bottom: 0.2rem; }
.team-role { color: var(--orange); font-size: 0.82rem; font-weight: 600; }
.skill-badge { background: var(--off-white); border: 1px solid rgba(26,62,212,0.15); color: var(--blue); padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.72rem; font-weight: 600; }
.team-link { width: 30px; height: 30px; border-radius: 6px; background: rgba(26,62,212,0.08); border: 1px solid var(--border); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; text-decoration: none; transition: all 0.3s; }
.team-link:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ===== TESTIMONIAL ===== */
.testimonial-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.8rem; position: relative; }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display',serif; font-size: 5rem; color: var(--orange); opacity: 0.25; position: absolute; top: 0; left: 1.5rem; line-height: 1; }
.testimonial-text { color: rgba(255,255,255,0.82); font-style: italic; padding-top: 1.5rem; margin-bottom: 1.5rem; font-size: 0.92rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; border: 2px solid var(--orange); }
.testimonial-avatar-placeholder { width: 46px; height: 46px; border-radius: 8px; background: linear-gradient(135deg,var(--blue),var(--orange)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.testimonial-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.testimonial-role { color: var(--orange); font-size: 0.78rem; }
.stars { color: var(--orange); font-size: 0.82rem; }

/* ===== BLOG CARD ===== */
.blog-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: all 0.35s; height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.blog-img { height: 190px; overflow: hidden; background: var(--dark-card); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-body { padding: 1.3rem; }
.blog-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }
.blog-title { font-size: 1.05rem; color: var(--dark); margin: 0.4rem 0 0.6rem; line-height: 1.4; }
.blog-title a { text-decoration: none; color: inherit; }
.blog-title a:hover { color: var(--orange); }
.blog-excerpt { color: var(--text-muted); font-size: 0.86rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== STATS BAR ===== */
.stats-section { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-num { font-family: 'Playfair Display',serif; font-size: 2.8rem; font-weight: 900; color: var(--orange); }
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--black) 0%, #050d2a 60%, #0a1535 100%); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.page-hero-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(26,62,212,0.08) 0%, transparent 70%); top: -100px; right: -100px; }
.page-hero h1 { color: var(--white); }
.breadcrumb-sds { background: none; padding: 0; }
.breadcrumb-sds .breadcrumb-item a { color: var(--orange); text-decoration: none; font-size: 0.88rem; }
.breadcrumb-sds .breadcrumb-item.active { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.breadcrumb-sds .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ===== FORMS ===== */
.sds-input { background: var(--white); border: 1px solid rgba(0,0,0,0.12); border-radius: 6px; padding: 0.75rem 1rem; font-size: 0.93rem; transition: all 0.3s; width: 100%; }
.sds-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,62,212,0.1); outline: none; }
.sds-input-dark { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 6px; padding: 0.75rem 1rem; color: var(--white); font-size: 0.93rem; transition: all 0.3s; width: 100%; }
.sds-input-dark:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,90,26,0.1); outline: none; background: rgba(255,255,255,0.07); color: var(--white); }
.sds-input-dark::placeholder { color: rgba(255,255,255,0.35); }
.form-label-sds { color: var(--orange); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; display: block; letter-spacing: 0.5px; }

/* ===== NEWSLETTER ===== */
.newsletter-strip { background: var(--dark-card); border-top: 1px solid var(--border); }

/* ===== FOOTER ===== */
.sds-footer { background: var(--black); color: var(--white); border-top: 1px solid var(--border); }
.footer-logo-text { font-family: 'Playfair Display',serif; font-size: 1.3rem; color: var(--white); font-weight: 700; }
.footer-logo-text span { color: var(--orange); }
.footer-heading { color: var(--orange); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange); }
.contact-info p { color: rgba(255,255,255,0.55); font-size: 0.86rem; margin-bottom: 0.45rem; }
.social-btn { width: 34px; height: 34px; border-radius: 6px; background: rgba(26,62,212,0.1); border: 1px solid var(--border); color: #7a9fff; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; text-decoration: none; transition: all 0.3s; }
.social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.footer-divider { border-color: var(--border); }
.sds-footer .text-muted { color: rgba(255,255,255,0.35) !important; }
.sds-footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
.sds-footer a:hover { color: var(--orange); }
.rc-badge { background: rgba(224,90,26,0.1); border: 1px solid var(--border-orange); color: var(--orange); padding: 0.2rem 0.7rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; }

/* ===== SCROLL TOP ===== */
.scroll-top-btn { position: fixed; bottom: 2rem; right: 2rem; width: 42px; height: 42px; background: var(--orange); color: #fff; border: none; border-radius: 6px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; }
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--orange-light); transform: translateY(-3px); }

/* ===== HR MODULE ===== */
.hr-sidebar { background: var(--black); min-height: 100vh; padding: 1.5rem 0; border-right: 1px solid var(--border); position: fixed; top: 0; left: 0; width: 260px; z-index: 1040; overflow-y: auto; }
.hr-sidebar-logo { padding: 1rem 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.hr-sidebar-logo span { font-family: 'Playfair Display',serif; font-size: 1rem; color: var(--white); font-weight: 700; }
.hr-nav-label { font-size: 0.68rem; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; padding: 1rem 1.5rem 0.5rem; }
.hr-nav-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1.5rem; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.3s; border-left: 3px solid transparent; }
.hr-nav-link i { width: 18px; text-align: center; font-size: 0.88rem; }
.hr-nav-link:hover,.hr-nav-link.active { color: var(--orange); background: rgba(224,90,26,0.08); border-left-color: var(--orange); }
.hr-content { margin-left: 260px; min-height: 100vh; background: #eef1f8; }
.hr-topbar { background: var(--white); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.08); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; }
.hr-topbar h5 { font-size: 1.05rem; color: var(--dark); margin: 0; }
.hr-page { padding: 2rem 1.5rem; }
.stat-card-hr { background: var(--white); border-radius: 10px; padding: 1.4rem; border: 1px solid rgba(0,0,0,0.06); border-left: 4px solid var(--orange); }
.stat-card-hr .stat-icon { width: 46px; height: 46px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: rgba(224,90,26,0.1); }
.stat-card-hr .stat-value { font-family: 'Playfair Display',serif; font-size: 1.9rem; font-weight: 700; color: var(--dark); }
.stat-card-hr .stat-label { font-size: 0.8rem; color: var(--text-muted); }
.hr-table { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.hr-table table { width: 100%; border-collapse: collapse; }
.hr-table thead th { background: var(--dark); color: var(--white); padding: 0.9rem 1rem; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hr-table tbody td { padding: 0.85rem 1rem; font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.hr-table tbody tr:hover { background: rgba(224,90,26,0.03); }
.hr-card { background: var(--white); border-radius: 10px; padding: 1.4rem; border: 1px solid rgba(0,0,0,0.06); margin-bottom: 1.5rem; }
.hr-card-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; border-bottom: 2px solid var(--orange); padding-bottom: 0.4rem; display: inline-block; }
.badge-status-pending { background: rgba(255,193,7,0.12); color: #c48a00; }
.badge-status-approved { background: rgba(40,167,69,0.12); color: #186e2a; }
.badge-status-rejected { background: rgba(220,53,69,0.12); color: #b02030; }
.badge-status-active { background: rgba(40,167,69,0.12); color: #186e2a; }
.badge-status-inactive { background: rgba(108,117,125,0.12); color: #3d4550; }
.badge-pkp { padding: 0.3em 0.7em; border-radius: 4px; font-size: 0.73rem; font-weight: 600; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hr-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .hr-sidebar.open { transform: translateX(0); }
    .hr-content { margin-left: 0; }
    .sds-navbar .nav-link::after { display: none; }
}
@media (max-width: 768px) {
    .hero-stats { gap: 1.2rem; }
    .hero-stat-num { font-size: 1.5rem; }
}
