/* Reset CSS */

/* ===== GLOBAL RESET ===== */

/* ===== GLOBAL SPACE REDUCTION ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add to index.php or global CSS */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section {
    background: linear-gradient(-45deg, #1e3a8a, #3b82f6, #2563eb, #1d4ed8);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* ===== BACKGROUND COLORS ===== */
.bg-blue-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
    color: white !important;
}

.bg-blue-light {
    background: #f0f9ff !important;
}

.bg-white {
    background: white !important;
}

.bg-gray-light {
    background: #f8fafc !important;
}

/* ===== TEXT COLORS FOR BLUE BACKGROUND ===== */
.text-on-blue {
    color: white !important;
}

.text-on-blue p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-on-blue h1,
.text-on-blue h2,
.text-on-blue h3,
.text-on-blue h4 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Remove default margins */
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 0.5em; /* DIKECILKAN dari default */
}

/* Compact body */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5; /* DIKECILKAN dari 1.6 */
    color: #475569;
    background: #fff;
}

/* Compact container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Compact buttons */
.btn {
    padding: 8px 16px !important; /* DIKECILKAN */
    font-size: 14px !important; /* DIKECILKAN */
    border-radius: 4px !important; /* DIKECILKAN */
}

/* Compact main area */
main {
    min-height: calc(100vh - 150px); /* DIKECILKAN */
    padding-top: 5px !important; /* DIKECILKAN */
}

/* Compact section spacing */
section {
    padding: 40px 0 !important; /* DIKECILKAN dari 80px/100px */
}

/* Service cards compact */
.service-card {
    padding: 20px !important; /* DIKECILKAN */
    border-radius: 8px !important; /* DIKECILKAN */
}

.service-card i {
    font-size: 36px !important; /* DIKECILKAN */
    margin-bottom: 15px !important; /* DIKECILKAN */
}

/* CTA section compact */
.cta {
    padding: 40px 0 !important; /* DIKECILKAN */
}

.cta h2 {
    font-size: 1.8rem !important; /* DIKECILKAN */
    margin-bottom: 15px !important; /* DIKECILKAN */
}

/* Footer compact */
footer {
    padding: 40px 0 15px !important; /* DIKECILKAN */
    margin-top: 40px !important; /* DIKECILKAN */
}







:root {
    --primary: #1e3a8a;
    --secondary: #3b82f6;
    --success: #10b981;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --text: #475569;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.align-center { align-items: center; }

/* ===== BUTTON IMPROVEMENTS ===== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
}

/* Request button yang lebih kecil */
.btn-request {
    background: var(--success) !important;
    color: white !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s !important;
}

.btn-request:hover {
    background: #0da271 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3) !important;
}

/* ===== MAIN CONTENT AREA ===== */
main {
    min-height: calc(100vh - 200px);
    padding-top: 20px;
}

/* ===== FOOTER FIXES ===== */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}







body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
} 

/* ===== HEADER STYLES ===== */
.header-top {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    color: #60a5fa;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #e2e8f0;
}

.main-header {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-menu li a i {
    font-size: 16px;
}

.nav-menu li a:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

.nav-menu li a.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-menu li a.active i {
    color: white;
}

/* Request Button */
.btn-request {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid #e2e8f0;
    color: #475569;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .header-contact {
        gap: 20px;
    }
    
    .nav-menu li a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .header-contact {
        justify-content: center;
        gap: 20px;
    }
    
    .contact-item span {
        display: none;
    }
    
    .contact-item i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 15px;
        border-radius: 8px;
        justify-content: flex-start;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-main {
        font-size: 24px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.btn-request {
    background: #2563eb;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Services */
.services-preview {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1e293b;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #60a5fa;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #60a5fa;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    /* ===== FOOTER STYLES ===== */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 70px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #60a5fa;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(96, 165, 250, 0.2);
}

.footer-logo h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-links i {
    font-size: 12px;
}

.contact-info .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info .contact-item i {
    color: #60a5fa;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info .contact-item strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-info .contact-item p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #94a3b8;
    margin-bottom: 5px;
    font-size: 14px;
}

.copyright .disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

.footer-extra {
    display: flex;
    gap: 20px;
}

.footer-extra a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-extra a:hover {
    color: #60a5fa;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    
}
}