/*
-------------------------------
Import CSS and Google Fonts
-------------------------------
*/
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700,900|Work+Sans:300,400,500,600,700,800,900');

/* ==========================================================================
   GLOBAL STYLING & RESET (Penyempurnaan)
   ========================================================================== */

/* Tetapkan variabel warna untuk memudahkan penyesuaian */
:root {
    /* GANTI WARNA BRAND: Hijau #2BB04D diganti dengan Deep Teal #00A98F (Lebih Profesional) */
    --color-brand: #00A98F;        /* Deep Teal Modern */
    --color-brand-dark: #00897B;   /* Deep Teal Gelap untuk Hover */
    --color-text-dark: #1f2937;    /* Hampir Hitam (Dark Slate) */
    --color-text-soft: #6b7280;    /* Abu-abu Soft */
    --color-background: #f7f9fb;   /* Light Gray Background */
    --shadow-main: 0 8px 30px rgba(0, 0, 0, 0.08); /* Shadow card utama */
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15); /* Shadow card hover */
}

body {
    font-family: 'Work Sans', sans-serif; /* Font bersih dan profesional */
    color: var(--color-text-soft); 
    background-color: var(--color-background);
    font-size: 17px;
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    color: var(--color-text-dark);
    font-weight: 800; /* Konsisten, Heading sangat tebal */
    line-height: 1.2;
}

p {
    margin-bottom: 25px;
    font-weight: 400; /* Teks isi lebih ringan untuk kontras */
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a:hover, a:focus {
    text-decoration: none;
    outline: 0;
}


/* ==========================================================================
   FORM INPUTS & FOCUS (Glow Modern)
   ========================================================================== */

input:focus,
textarea:focus,
.form-control:focus,
select:focus {
    border-color: var(--color-brand);
    /* Menggunakan opacity 0.15 dari warna Deep Teal baru */
    box-shadow: 0 0 0 4px rgba(0, 169, 143, 0.15) !important; 
}

/* ==========================================================================
   HEADLINE/JUDUL BAGIAN
   ========================================================================== */
.headline {
    text-align: center;
    margin-bottom: 70px;
}
.headline h2 {
    font-size: 40px;
    font-weight: 900;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.headline h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-brand); /* Menggunakan Deep Teal baru */
    border-radius: 2px;
}
.headline h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-soft);
}


/* ==========================================================================
   BUTTONS (Magic Button Style)
   ========================================================================== */
.button-df a, .btn, .slider-text ul li a:not(.btn2) {
    /* Sudut membulat yang konsisten */
    border-radius: 10px !important; 
    padding: 15px 40px; 
    font-weight: 700;
    background-color: var(--color-brand); 
    color: #fff;
    border: 3px solid var(--color-brand); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Shadow dramatis, memberikan kesan terangkat (Deep Teal shadow) */
    box-shadow: 0 10px 20px rgba(0, 169, 143, 0.4); 
    transform: translateY(0);
}

.button-df a:hover, .btn:hover, .slider-text ul li a:not(.btn2):hover {
    background: var(--color-brand-dark); 
    border-color: var(--color-brand-dark);
    /* Shadow hover yang lebih jelas */
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0, 169, 143, 0.5);
}

/* Secondary Button (Outline Style) */
.btn.btn2 {
    background-color: transparent;
    color: var(--color-brand); /* Warna teks Deep Teal */
    border: 3px solid var(--color-brand);
    box-shadow: none;
    padding: 15px 40px; 
    font-weight: 700;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.btn.btn2:hover {
    background-color: var(--color-brand);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 169, 143, 0.3); 
}


/* ==========================================================================
   HEADER & MENU (Refined Look)
   ========================================================================== */

/* Top Bar */
.header-area {
    background: var(--color-brand); 
}

/* Sticky Menu Shadow */
#strickymenu.sticky {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

/* Garis bawah tebal saat hover/active pada sticky menu */
#strickymenu.sticky ul.nav-menu li:hover > a,
#strickymenu.sticky ul.nav-menu li.active > a {
    color: var(--color-brand) !important;
    border-bottom: 3px solid var(--color-brand); 
}


/* ==========================================================================
   SLIDER (Impact & Glassmorphism)
   ========================================================================== */

/* Teks Glow */
.text-animated h1 span {
    color: #fff; 
    /* Glow effect yang lebih halus dan futuristik (Deep Teal glow) */
    text-shadow: 0 0 15px rgba(0, 169, 143, 0.8), 0 0 5px rgba(0, 169, 143, 0.5); 
}

/* Tombol Glassmorphism pada Slider (Tombol Sekunder) */
.text-animated li:last-child a.btn2 {
    background: rgba(255, 255, 255, 0.1); 
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
    /* Efek Glassmorphism */
    backdrop-filter: blur(5px); 
}

.text-animated li:last-child a.btn2:hover {
    background: #fff;
    color: var(--color-brand); 
}

/* Navigasi Owl Carousel (Glassmorphism) */
.slider-one .owl-nav .owl-prev,
.slider-one .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(10px); 
    color: #fff !important;
    border-color: #fff !important;
}

.slider-one .owl-nav .owl-prev:hover, 
.slider-one .owl-nav .owl-next:hover {
    color: #fff;
    background: var(--color-brand);
    border-color: var(--color-brand);
    box-shadow: 0 6px 15px rgba(0, 169, 143, 0.5); 
}


/* ==========================================================================
   CHOOSE / FEATURE / SERVICES ITEMS (Cards) - Icon Accent & Hover
   ========================================================================== */
.choose-item, .feature-item, .services-item {
    padding: 40px; 
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    box-shadow: var(--shadow-main); 
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid #eaeaeb; 
    transform-style: preserve-3d;
    background-color: #ffffff;
}

.choose-item:hover, .feature-item:hover, .services-item:hover {
    transform: translateY(-10px); 
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 169, 143, 0.3); /* Border aksen Deep Teal */
}

/* --- IKON DENGAN BACKGROUND MELINGKAR --- */
.choose-icon, .feature-icon, .services-icon {
    font-size: 30px; 
    color: var(--color-brand);
    margin-bottom: 25px;
    transform: translateZ(10px); 
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px; 
    height: 65px;
    border-radius: 50%;
    /* Gunakan warna brand yang transparan untuk latar belakang ikon */
    background-color: rgba(0, 169, 143, 0.1); /* 10% opacity dari Deep Teal */
    transition: all 0.4s ease;
}

/* Efek Hover pada Ikon: Lingkaran menjadi solid */
.choose-item:hover .choose-icon, 
.feature-item:hover .feature-icon, 
.services-item:hover .services-icon {
    background-color: var(--color-brand); 
    color: #ffffff; 
}

.choose-text h4, .feature-text h4, .services-text h3 {
    font-size: 24px; 
    font-weight: 800;
    margin-bottom: 10px;
}

/* ==========================================================================
   FOOTER (Clean & Elegant)
   ========================================================================== */

/* Footer Social Icons (Menggunakan gaya yang sudah direvisi) */
.footer-item ul.footer-social li a {
    background: transparent; /* Ubah agar tidak menggunakan warna solid */
    color: var(--color-text-soft); 
    border: 1px solid var(--color-text-soft);
    width: 40px; 
    height: 40px;
    line-height: 38px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.footer-item ul.footer-social li a:hover {
    background: var(--color-brand); /* Hover ke Deep Teal */
    color: #fff;
    border-color: var(--color-brand);
}

/* ... (Sisa style Anda yang lain bisa dipertahankan di bawah sini) ... */