:root {
    --primary: #0062ff;
    --dark: #0a0f18;
    --light: #f8faff;
    --accent: #00d4ff;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}
/* Definisi gerakan animasi */
@keyframes melayang {
  0% {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  50% {
    transform: translateY(-20px);


  }
  100% {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
}

/* Navbar Premium */
.navbar {
    position: fixed;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    color: black;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: -1px;
}

.logo span { color: var(--primary); }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    margin-left: 35px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-menu li a:hover { color: var(--primary); }

.btn-primary {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/ac.jpeg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(75deg, var(--dark) 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.badge {
    background: var(--glass);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-main {
    padding: 18px 35px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline {
    padding: 18px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
}

/* Cards Section */
.services { padding: 100px 0; animation: melayang 3s ease-in-out;}
.services:active { padding: 100px 0; animation: melayang 3s ease-in-out;}
.navbar{padding: 20px ;}
.hero {
    height: 100vh;
    background: url('images/ac.jpeg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 { font-size: 2.5rem; font-weight: 800; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    transition: 0.4s;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 98, 255, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 15px;
    margin-bottom: 25px;
}

/* Units Section */
.units {
    background: var(--dark);
    padding: 80px 0;
    color: #fff;
}

.units-wrapper { text-align: center; }

.unit-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.unit-tags span {
    padding: 12px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    font-size: 0.9rem;
}
.wa-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 0 15px 15px 15px;
    box-shadow: 10px 10px 30px rgba(37, 211, 102, 0.3);
}
.unit-tags i { color: var(--accent); margin-right: 8px; }

.wa-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Menu Pop-up */
.wa-menu {
    background: #fff;
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    margin-bottom: 15px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wa-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.wa-menu-header {
    background: #25d366;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.wa-menu-header p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

.wa-admin-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.wa-admin-item:hover {
    background: #f9f9f9;
}
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 999;
}
.wa-admin-icon {
    width: 40px;
    height: 40px;
    background: #e8faf0;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.wa-admin-text strong {
    display: block;
    font-size: 0.95rem;
}

.wa-admin-text small {
    color: #888;
    font-size: 0.75rem;
}

/* Penyesuaian Tombol Utama agar bisa diklik */
.wa-float {
    cursor: pointer;
}
/* Logo Card Section Style */
.logo-section {
    padding: 60px 0;
    background: #f0f4f8; /* Background sedikit berbeda untuk kontras */
}

.logo-card {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,98,255,0.05);
}

.logo-content .sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.logo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.logo-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.logo-display {
    text-align: center;
}

.image-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 30px;
    transition: 0.3s;
}

.image-wrapper img {
    max-width: 180px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.brand-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

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

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #eee;
}



@media (max-width: 768px) {

 
    .nav-menu { display: none; }
    .hero-btns { flex-direction: column; }
    .logo{color: white;}
    .navbar.scrolled {
        background: rgb(32, 32, 32);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
    .logo-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .logo-content h2 {
        font-size: 2rem;
    }

    .brand-stats {
        gap: 20px;
    }
.card{
    text-align: center;
    justify-content: center;
    align-items: center;
}
.icon-box{
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.wa-content{
    display: none;

    
}
.units-wrapper{
    padding: 5%;}
}