/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f8ff;
    color:#1e293b;
    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.navbar{
    background:rgba(8,24,58,.90);
    backdrop-filter:blur(15px);
    transition:.4s;
}

.navbar-brand{
    color:white!important;
    font-size:24px;
}

.navbar-brand img{
    margin-right:8px;
}

.nav-link{
    color:white!important;
    font-weight:500;
    margin-left:18px;
}

.nav-link:hover{
    color:#5aa8ff!important;
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #1d4ed8,
    #2563eb);

    color:white;

    padding-top:90px;
}

.hero h1{

    font-size:58px;

    font-weight:700;

    line-height:1.2;
}

.hero p{

    font-size:22px;

    opacity:.9;
}

.hero-logo{

    width:430px;

    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/* =========================
BUTTON
========================= */

.btn-primary{

background:#2563eb;
border:none;
padding:14px 35px;
border-radius:50px;
font-weight:600;
transition:.4s;

}

.btn-primary:hover{

transform:translateY(-5px);
box-shadow:0 15px 35px rgba(37,99,235,.45);

}

.btn-outline-light{

border-radius:50px;
padding:14px 35px;

}

/* =========================
CARD
========================= */

.card-box{

background:white;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.card-box:hover{

transform:translateY(-10px);

}

.card-box i{

font-size:50px;

color:#2563eb;

margin-bottom:20px;

}

.card-box h4{

font-weight:700;

margin-bottom:10px;

}

/* =========================
SERVICE
========================= */

.services{

background:#eef5ff;

}

.service{

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.07);

transition:.4s;

height:100%;

}

.service:hover{

transform:translateY(-10px);

box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.service h3{

font-weight:700;

color:#1d4ed8;

margin-bottom:15px;

}

/* =========================
CTA
========================= */

.cta{

background:

linear-gradient(

135deg,

#0f172a,

#2563eb);

color:white;

padding:90px 0;

}

.cta h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

/* =========================
FOOTER
========================= */

footer{

background:#08183a;

padding:25px;

text-align:center;

color:white;

}

/* =========================
WHATSAPP FLOAT
========================= */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:34px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.3s;

z-index:999;

}

.whatsapp:hover{

transform:scale(1.1);

color:white;

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

.hero{

text-align:center;

}

.hero h1{

font-size:40px;

}

.hero-logo{

width:280px;

margin-top:40px;

}

}

@media(max-width:576px){

.hero h1{

font-size:32px;

}

.hero p{

font-size:18px;

}

.btn{

width:100%;

margin-bottom:12px;

}

}
/* ===========================
ANIMASI SCROLL
=========================== */

.hidden{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/* ===========================
BACK TO TOP
=========================== */

.back-top{

position:fixed;

right:25px;

bottom:105px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#2563eb;

color:white;

font-size:24px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:999;

box-shadow:0 10px 20px rgba(0,0,0,.25);

}

.back-top.active{

opacity:1;

visibility:visible;

}

.back-top:hover{

transform:translateY(-5px);

}
.glass{

background:rgba(255,255,255,.15);

backdrop-filter:blur(20px);

border-radius:25px;

border:1px solid rgba(255,255,255,.2);

}
.form-control,
.form-select{
    border-radius:12px;
    padding:12px;
}

.form-control:focus,
.form-select:focus{
    border-color:#2563eb;
    box-shadow:0 0 10px rgba(37,99,235,.25);
}

.text-danger{
    margin-top:5px;
}

#counter{
    font-weight:600;
    color:#2563eb;
}

#btnOrder:disabled{
    opacity:.8;
    cursor:not-allowed;
}
/* =========================
   SERVICE & CARD SETUP
========================= */

.services {
    background: #eef5ff;
}

/* Base style untuk semua kartu layanan agar tingginya SERAGAM */
.service {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    transition: .4s;
    height: 100%;             /* Memastikan kartu memenuhi tinggi kolom */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Menjaga tombol 'Pesan Sekarang' tetap di paling bawah */
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .25);
}

.service h3 {
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 15px;
}


/* CARD KHUSUS WEBSITE ONLINE */

.website-card {
    background: linear-gradient(145deg, #ffffff, #eef5ff);
    border: 2px solid #0d6efd;
    position: relative;
    overflow: hidden;
}

/* Efek lingkaran dekorasi di sudut kanan atas */
.website-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    pointer-events: none; /* Agar tidak mengganggu klik tombol */
}

/* Judul khusus website */
.website-card h3 {
    color: #0d6efd;
}

/* Harga khusus website */
.harga-website {
    font-size: 24px;
    font-weight: 800;
    color: #0d6efd;
    margin-top: 10px;
}

/* List keunggulan */
.website-card ul {
    padding-left: 20px;
    margin: 15px 0;
    list-style: none; /* Menghilangkan titik default list */
}

.website-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Hover khusus kartu website */
.website-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.25);
}
/* ==========================================
   SECTION KONTAK (INFORMASI & FORM KIRIM)
========================================== */

/* Mengatur container row agar kartu di dalamnya punya tinggi yang sama */
.section-kontak .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Memastikan kartu kiri dan kanan sama tinggi */
}

/* Memastikan wrapper kolom mengambil penuh tinggi flex */
.section-kontak .col-lg-6 {
    display: flex;
    flex-direction: column;
}

/* Kustomisasi Card Box Kontak */
.card-box-kontak {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%; /* Mengisi penuh tinggi kolom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-box-kontak:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

/* Style Item Informasi Kontak (Kiri) */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
}

.info-item i {
    font-size: 24px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Form Input Alignment (Kanan) */
.form-kontak .form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: 0.3s;
}

.form-kontak .form-control:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Pilihan Radio Method (WA / Gmail) */
.method-box {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
}
/* =========================
   KONTAK SEJAJAR
========================= */

/* Section kontak */
.section-kontak {
    padding: 80px 0;
}


/* Baris kontak */
.section-kontak .row {
    display: flex;
    align-items: stretch;
}


/* Kolom kiri dan kanan */
.section-kontak .col-lg-6 {
    display: flex;
}


/* Kedua box sama tinggi */
.card-box-kontak {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* Bagian informasi kiri */
.card-box-kontak .info-item:last-child {
    margin-bottom: 0;
}


/* Form kanan */
.form-kontak {
    width: 100%;
}


/* Jarak antar input */
.form-kontak .mb-3 {
    margin-bottom: 20px !important;
}


/* Tombol kirim */
.form-kontak button {
    margin-top: auto;
}


/* Mobile */
@media(max-width:991px){

    .section-kontak .col-lg-6 {
        margin-bottom:25px;
    }

}