/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    color: #222;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    border-left: 5px solid #F7941D;
    padding-left: 15px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 25px;
}

p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* ================= HEADER ================= */
.header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-box {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F7941D;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #F7941D;
}

/* Dropdown di Navbar */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 130%;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: #F7941D;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.btn-pdf {
    background-color: #F7941D;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-pdf:hover {
    background-color: #e08515;
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #F7941D;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('assets/capslogtruck.png') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #F7941D;
    font-weight: 500;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.btn-hero {
    background-color: #F7941D;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
    border: 3px solid #F7941D;
}

.btn-hero:hover {
    background-color: transparent;
    color: #F7941D;
}

/* ================= ABOUT ================= */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));     
    gap: 30px;
    margin: 30px 0;
}

/* VM CARD - STYLE KUNCIAN 1 */
.vm-card {
    background: white;
    color: #0b2c4d;
    border: none;
    border-radius: 12px;
    box-shadow: -10px 0 20px rgba(247, 148, 29, 0.15), 
                 10px 0 20px rgba(247, 148, 29, 0.15);
    padding: 25px;
    transition: all 0.3s ease;
}

.vm-card:hover {
    box-shadow: -12px 0 22px rgba(247, 148, 29, 0.2), 
                 12px 0 22px rgba(247, 148, 29, 0.2);
    transform: translateY(-2px);
}

.vm-card h3,
.vm-card p,
.vm-card li,
.vm-card strong {
    color: #0b2c4d !important;
    font-weight: 500;
}

.vm-card i.fas {
    color: #F7941D;
    transition: color 0.3s ease;
}

.vm-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.vm-card li {
    margin-bottom: 8px;
}

/* KEUNGGULAN KAMI - STYLE KUNCIAN 4 */
.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.adv-card {
    background: white;
    color: #0b2c4d;
    border: 2px solid #0b2c4d;
    border-radius: 10px;
    box-shadow: -8px -8px 20px rgba(247, 148, 29, 0.2), 0 8px 20px rgba(11, 44, 77, 0.1);
    padding: 25px 20px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    background: #F7941D;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.adv-card i {
    color: #F7941D;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.adv-card strong {
    display: block;
    margin-bottom: 5px;
    color: #0b2c4d;
}

.adv-card:hover {
    border-color: #F7941D;
    transform: translateY(-5px);
    box-shadow: -12px -12px 30px rgba(247, 148, 29, 0.35), 0 12px 30px rgba(11, 44, 77, 0.2);
}

/* ================= SERVICES ================= */
.services {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
}

/* SERVICE BUTTONS - STYLE KUNCIAN 4 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-btn {
    background: white;
    color: #0b2c4d;
    border: 2px solid #0b2c4d;
    border-radius: 10px;
    box-shadow: -10px -10px 25px rgba(247, 148, 29, 0.25), 0 10px 25px rgba(11, 44, 77, 0.15);
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    background: #F7941D;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.service-btn i {
    color: #0b2c4d;
    font-size: 36px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-btn:hover {
    background: #0b2c4d;
    color: white;
    border-color: #F7941D;
    transform: translateY(-8px);
    box-shadow: -15px -15px 35px rgba(247, 148, 29, 0.35), 0 15px 35px rgba(11, 44, 77, 0.25);
}

.service-btn:hover i {
    color: #F7941D;
}

/* Tarif dropdown */
.service-tarif {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Area hover lebih besar untuk Tarif */
.service-tarif:hover .dropdown-menu,
.service-tarif:focus-within .dropdown-menu {
    display: block;
}

/* Tambah area invisible untuk hover lebih mudah */
.service-tarif::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: -25px;
    left: 0;
    background: transparent;
    z-index: 5;
}

/* Dropdown menu untuk Tarif */
.service-tarif .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.3);
    z-index: 10;
    border: 2px solid #F7941D;
}

.service-tarif .dropdown-menu a {
    display: block;
    padding: 15px 20px;
    color: #0b2c4d;
    text-decoration: none;
    border-bottom: 1px solid rgba(247, 148, 29, 0.2);
    transition: all 0.3s ease;
}

.service-tarif .dropdown-menu a:hover {
    background: #F7941D;
    color: white;
}

/* Untuk mobile touch */
@media (max-width: 768px) {
    .service-tarif {
        position: static;
    }
    
    .service-tarif .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }
    
    .service-tarif::after {
        display: none;
    }
}

/* SERVICE DETAIL - STYLE KUNCIAN 4 */
.services-detail {
    background: #0b2c4d;
    color: white;
    border: 2px solid #F7941D;
    border-radius: 12px;
    box-shadow: -10px -10px 25px rgba(247, 148, 29, 0.25), 0 10px 25px rgba(11, 44, 77, 0.2);
    padding: 25px;
    margin-top: 30px;
}

.services-detail p,
.services-detail strong {
    color: white;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-bottom: 15px;
    align-items: center;
}

/* SERVICE ITEMS - STYLE KUNCIAN 4 */
.service-item {
    background: white;
    color: #0b2c4d;
    border: 2px solid #0b2c4d;
    border-radius: 8px;
    box-shadow: -6px -6px 15px rgba(247, 148, 29, 0.2), 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-item i,
.service-item .material-symbols-outlined {
    color: #F7941D;
    font-size: 22px;
    margin-right: 8px;
}

.service-item svg {
    width: 28px;
    height: 28px;
    stroke: #F7941D;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.service-item:hover {
    background: #0b2c4d;
    color: white;
    border-color: #F7941D;
    transform: translateY(-3px);
    box-shadow: -10px -10px 25px rgba(247, 148, 29, 0.3), 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* MATERIAL ICONS */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #F7941D;
    font-size: 22px;
    margin-right: 8px;
}

/* ================= CONTACT ================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CONTACT CARD - STYLE KUNCIAN 3 */
.contact-card {
    background: white;
    color: #0b2c4d;
    border: none;
    border-radius: 12px;
    padding: 50px 30px 30px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

/* Header Box (Title) */
.contact-card h3 {
    background: #F7941D;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 25px;
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    min-width: 180px;
    text-align: center;
}

/* Icon dalam header */
.contact-card h3 i {
    color: white;
    margin-right: 10px;
    font-size: 1.1em;
}

/* Hover Effect */
.contact-card:hover {
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.2);
    transform: translateY(-5px);
}

/* Konten card */
.contact-card p,
.contact-card li,
.contact-card a {
    color: #0b2c4d;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* WhatsApp list */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(247, 148, 29, 0.1);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list i {
    color: #25D366;
    font-size: 1.2rem;
}

.contact-card a {
    color: #0b2c4d;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-card a:hover {
    color: #F7941D;
}

/* ================= TITLE CARD (STYLE KUNCIAN 2) ================= */
section h2.title-card,
section h3.title-card {
    background: white;
    color: #0b2c4d;
    border: none;
    border-radius: 12px;
    box-shadow: -10px 0 0 rgba(247, 148, 29, 0.25), 
                 10px 0 0 rgba(247, 148, 29, 0.25);
    padding: 18px 30px 18px 25px;
    margin-bottom: 30px;
    display: inline-block;
    border-left: 5px solid #F7941D;
    font-weight: 600;
    transition: all 0.3s ease;
}

section h2.title-card:hover,
section h3.title-card:hover {
    box-shadow: -12px 0 0 rgba(247, 148, 29, 0.35), 
                 12px 0 0 rgba(247, 148, 29, 0.35);
    transform: translateY(-2px);
}

section h2.title-card i,
section h3.title-card i {
    color: #F7941D;
    margin-right: 15px;
    font-size: 1.3em;
}

/* ================= FOOTER ================= */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #F7941D;
}

.copyright {
    margin: 15px 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F7941D;
}

/* ================= UTILITY CLASSES ================= */
/* Gunakan class ini di HTML untuk kostumisasi cepat tanpa edit CSS */

/* === BACKGROUND COLORS === */
.bg-orange { background: #F7941D !important; }
.bg-blue { background: #0b2c4d !important; }
.bg-white { background: white !important; }
.bg-gray { background: #f8f9fa !important; }
.bg-light-orange { background: #fff5e6 !important; }

/* === TEXT COLORS === */
.text-white { color: white !important; }
.text-black { color: #222 !important; }
.text-orange { color: #F7941D !important; }
.text-blue { color: #0b2c4d !important; }
.text-gray { color: #666 !important; }

/* === BORDER COLORS === */
.border-orange { border-color: #F7941D !important; }
.border-blue { border-color: #0b2c4d !important; }
.border-yellow { border-color: #ffcc00 !important; }
.border-gray { border-color: #ddd !important; }
.border-white { border-color: white !important; }

/* === BORDER STYLES === */
.border-solid { border-style: solid !important; }
.border-dashed { border-style: dashed !important; }
.border-dotted { border-style: dotted !important; }
.border-double { border-style: double !important; }

/* === BORDER WIDTH === */
.border-1 { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-3 { border-width: 3px !important; }
.border-4 { border-width: 4px !important; }

/* === SHADOW DIRECTIONS === */
.shadow-top { box-shadow: 0 -8px 20px rgba(0,0,0,0.1) !important; }
.shadow-right { box-shadow: 8px 0 20px rgba(0,0,0,0.1) !important; }
.shadow-left { box-shadow: -8px 0 20px rgba(0,0,0,0.1) !important; }
.shadow-bottom { box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important; }
.shadow-all { box-shadow: 0 0 20px rgba(0,0,0,0.1) !important; }
.shadow-orange { box-shadow: 0 8px 20px rgba(247, 148, 29, 0.2) !important; }
.shadow-blue { box-shadow: 0 8px 20px rgba(11, 44, 77, 0.2) !important; }
.shadow-inner { box-shadow: inset 0 0 10px rgba(0,0,0,0.1) !important; }
.shadow-none { box-shadow: none !important; }

/* === ROUNDED CORNERS === */
.rounded-sm { border-radius: 8px !important; }
.rounded-md { border-radius: 12px !important; }
.rounded-lg { border-radius: 16px !important; }
.rounded-xl { border-radius: 20px !important; }
.rounded-full { border-radius: 9999px !important; }

/* === TEXT SIZE === */
.text-sm { font-size: 0.9rem !important; }
.text-md { font-size: 1rem !important; }
.text-lg { font-size: 1.1rem !important; }
.text-xl { font-size: 1.3rem !important; }

/* === PADDING UTILITIES === */
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

/* === MARGIN UTILITIES === */
.m-1 { margin: 0.5rem !important; }
.m-2 { margin: 1rem !important; }
.m-3 { margin: 1.5rem !important; }
.m-4 { margin: 2rem !important; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .nav {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav.active {
        display: flex;
        right: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #eee;
        color: #333;
        font-size: 16px;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        margin: 10px 0;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .btn-pdf {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-row {
        gap: 10px;
    }
    
    .service-item {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .service-item svg {
        width: 22px;
        height: 22px;
    }
    
    .material-symbols-outlined {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .advantages {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .adv-card {
        min-height: 90px;
        padding: 20px 15px;
    }
    
    .service-item {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .service-item svg {
        width: 20px;
        height: 20px;
    }
    
    .material-symbols-outlined {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-btn {
        padding: 25px 15px;
        min-height: 140px;
    }
    
    .service-btn i {
        font-size: 30px;
    }
    
    .service-item {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}