/* =============================================
   PT Samuel Jaya Maritim - Professional Theme
   Bootstrap 5 Custom - v2.0
   ============================================= */

:root {
    --navy: #0a1628;
    --navy-light: #1a3a5c;
    --navy-mid: #142a45;
    --gold: #f5a623;
    --gold-hover: #e09513;
    --text-muted: #6c757d;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

/* Base */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--navy);
}

.text-navy { color: var(--navy) !important; }
.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }

/* Top Bar */
.top-bar {
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Navbar */
.nav-main {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-main .navbar-brand {
    color: white !important;
}

.nav-main .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 0.6rem 1rem !important;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-main .nav-link:hover,
.nav-main .nav-link.active {
    color: var(--gold) !important;
    background: rgba(255,255,255,0.06);
}

.nav-main .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.nav-main .dropdown-item {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.nav-main .dropdown-item:hover,
.nav-main .dropdown-item.active {
    background: var(--navy-light);
    color: white;
}

.logo-icon {
    font-size: 0.85rem;
}

/* Language Switcher */
.lang-switcher .dropdown-item {
    font-size: 0.9rem;
}

.lang-switcher .dropdown-item.active {
    background: var(--navy);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(20,42,69,0.88) 50%, rgba(10,22,40,0.85) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.hero-badges .badge-item i {
    color: var(--gold);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-label {
    display: inline-block;
    background: rgba(245,166,35,0.15);
    color: var(--gold-hover);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card-pro {
    border: none;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-pro:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-pro .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-pro:hover .card-img-top {
    transform: scale(1.05);
}

.card-pro .card-body {
    padding: 1.5rem;
}

.card-pro .card-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.card-pro .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Cards */
.service-card-pro {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, rgba(245,166,35,0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s;
}

.card-pro:hover .service-icon-wrap {
    background: var(--gold);
    color: var(--navy);
}

/* Job Cards */
.job-card-pro .job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.job-card-pro .job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.job-card-pro .job-meta-item i {
    color: var(--gold);
    font-size: 1rem;
}

.job-card-pro .salary-tag {
    background: rgba(40,167,69,0.1);
    color: #28a745;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy) !important;
}

/* Footer */
.footer-pro {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f35 100%);
    color: rgba(255,255,255,0.75);
    padding-top: 4rem;
}

.footer-pro h5 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-pro a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-pro a:hover {
    color: var(--gold);
}

.footer-pro .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-pro .footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-list a::before {
    content: '>';
    color: var(--gold);
    font-size: 0.7rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.floating-whatsapp .btn-whatsapp {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s;
}

.floating-whatsapp .btn-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* Breadcrumb */
.breadcrumb-wrapper {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--navy-light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Page Content */
.page-content {
    background: white;
    min-height: 50vh;
    padding: 3rem 0;
}

.page-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.page-body h2, .page-body h3, .page-body h4 {
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-body ul {
    padding-left: 1.25rem;
}

.page-body ul li {
    margin-bottom: 0.5rem;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

/* Stats Bar (Homepage) */
.stats-bar {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    padding: 2.5rem 0;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .nav-main .navbar-brand .logo-icon {
        width: 36px;
        height: 36px;
    }
}
