:root {
    --navy: #0f172a;
    --cobalt: #2563eb;
    --accent: #3b82f6;
    --bg-light: #f1f5f9;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --white: #ffffff;
    --radius: 1rem;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.6; }

/* Header */
header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 1.2rem; }
.logo i { color: var(--cobalt); font-size: 1.5rem; }

nav ul { display: flex; gap: 1.5rem; list-style: none; margin-bottom: 0}
nav a { text-decoration: none; color: var(--text-dark); font-size: 1 rem; font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--cobalt); }

.btn-consult { background: var(--navy); color: var(--white); padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; }

/* Hero Section */
.hero {
    display: flex; min-height: 90vh; background: var(--navy); color: white;
    position: relative; overflow: hidden;
}

.hero-content {
    flex: 1; padding: 5rem 5%; display: flex; flex-direction: column; justify-content: center; z-index: 2;
}

.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content span { background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.1rem; color: #cbd5e1; max-width: 500px; margin-bottom: 2.5rem; }

.hero-btns { display: flex; gap: 1rem; }
.btn-primary { background: var(--cobalt); color: white; padding: 1rem 2rem; border-radius: var(--radius); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.btn-outline { border: 1px solid #334155; color: white; padding: 1rem 2rem; border-radius: var(--radius); font-weight: 600; text-decoration: none; background: rgba(255,255,255,0.05); }

.hero-image {
    flex: 1; position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80');
    background-size: cover; background-position: center;
}

/* Card Sections */
section { padding: 1rem 4%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; color: var(--navy); }

.section-header-card { text-align: center; margin-bottom: 0; }
.section-header-card h2 { font-size: 2.5rem; color: var(--navy); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.icon-circle { width: 60px; height: 60px; background: rgba(37, 99, 235, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--cobalt); font-size: 1.5rem; }

/* Services Grid */
.grid-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); padding: 1.5rem; border-radius: var(--radius); position: relative; }
.service-card i { color: var(--white); background: var(--cobalt); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 1rem; font-size: 28px; }
.service-card h4 { font-size: 1rem; margin-bottom: 1rem; min-height: 3rem; font-weight: bold;}
.service-card a { color: var(--cobalt); font-size: 0.85rem; font-weight: 600; text-decoration: none; }

/* Methodology */
.method-banner { background: linear-gradient(135deg, var(--navy), #1e3a8a); color: white; border-radius: var(--radius); padding: 3rem; display: flex; justify-content: space-around; align-items: center; margin-top: 4rem; }
.step { text-align: center; position: relative; flex: 1; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: -10%; top: 50%; transform: translateY(-50%); opacity: 0.5; font-size: 1.5rem; }

/* Contact Section */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.contact-cta { background: var(--cobalt) url('https://www.transparenttextures.com/patterns/city.png'); padding: 3rem; border-radius: var(--radius); color: white; }
.contact-form { background: white; padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.2rem; }
input, select, textarea { width: 100%; padding: 0.8rem; border: 1px solid #e2e8f0; border-radius: 8px; margin-top: 5px; }

/* Footer */
footer { background: var(--navy); color: white; padding: 4rem 8% 2rem; }

.contact-cta-c { background: #fff; padding: 3rem; border-radius: var(--radius); color: #1e293b; }

.contact-value {
    font-size: 20px;
}

.logo img {
    max-width: 50px;
    object-fit: fill;
}

.card p {
    margin-top: 15px;
    /*text-align: justify;*/
}

.list-group-item {
    padding: 10px 0;
    border: none;
}

.list-group-item i{
    color: #1A9BED;
}

.vision {
    width: 100%;
    display: block;
    opacity: 0.6;
    position: absolute;
    margin: 0 -40px;
    bottom: 0;
}

.layanan {
    font-size: 30px;
    font-weight: bold;
    margin-top: 15px;
}
.layanan span {
    color: #1A9BED;
}

.step strong {
    font-size: 20px;
}

.card img {
    max-height: 100px;
    width: fit-content;
}

.img-profile {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.profile {
    padding: 10px !important;
}

.profile img {
    width: 100%;
    object-fit: cover;
    max-height: 100%;
}

.name {
    font-weight: bold;
    font-size: 20px;
    margin: 10px 0px;
    text-align: center;
}

.position {
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0px;
    color: #258EE8;
    text-align: center;
}

.pengalaman {
    font-size: 14px;
    margin: 10px 0px;
}

.profile i {
    font-size: 26px;
    color: #06365C;
}

.medsos {
    color: #ffff;
}

.card-p {
    font-size: 18px;
    text-align: -webkit-center;
}

.card-list {
    font-size: 18px;
    text-align: -webkit-center;
}

/*.card-list li {
    border: 1px solid #ccc;
    border-radius: 0px;
}*/

.card-partner  img {
    width: -webkit-fill-available !important;
    max-height: 100% !important;
}



@media (max-width: 1024px) {
    .grid-services { grid-template-columns: repeat(2, 1fr); }
    .hero { flex-direction: column; }
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}