:root {
    --primary-color: #0ad4d9;
    --secondary-color: #96211b;
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text-color: #eaeaea;
    --card-radius: 20px;
}

body {
    background: url("../img/BGWebgladiator.png") no-repeat center center fixed;
    background-size: cover;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll !important;
        background-position: top center !important;
        min-height: 100vh;
    }
}

/* --- Navbar Modern --- */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(150, 33, 27, 0.5);
    padding: 15px 0;
    transition: all 0.3s;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(10, 212, 217, 0.6);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    padding: 110px 0 100px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(10, 212, 217, 0.3);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    color: #ccc;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* --- Buttons Modern --- */
.btn-custom {
    background: linear-gradient(45deg, var(--secondary-color), #c0392b);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(150, 33, 27, 0.4);
}

.btn-custom:hover {
    background: linear-gradient(45deg, var(--primary-color), #08aeb3);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 212, 217, 0.5);
}

/* --- Cards (Glassmorphism) --- */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(10, 212, 217, 0.15);
}

.card h4,
.card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.card p,
.card li {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card.premium {
    border: 1px solid var(--primary-color);
    background: rgba(10, 212, 217, 0.05);
    box-shadow: 0 0 20px rgba(10, 212, 217, 0.1);
    position: relative;
    overflow: visible !important;
}

/* Style Badge 'BEST VALUE' */
.card.premium .badge {
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

/* Style Harga Neon (Glow Effect) */
.card.premium .price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 3rem;
    margin: 15px 0;

    text-shadow:
        0 0 10px rgba(10, 212, 217, 0.8),
        0 0 20px rgba(10, 212, 217, 0.5),
        0 0 40px rgba(10, 212, 217, 0.3);
}

/* Judul Paket */
.card.premium h3 {
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- Section Title --- */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- Footer --- */
footer {
    background-color: #080808;
    border-top: 1px solid #222;
    color: #888;
    padding: 60px 0 30px;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--primary-color);
}

/* --- Team Image --- */
.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    padding: 5px;
    transition: 0.3s;
}

.card:hover .team-img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* --- Text Utility --- */
.text-neon {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(10, 212, 217, 0.4);
}

/* --- Modal Modern --- */
.modal-content {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 20px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: white;
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(10, 212, 217, 0.25);
}


.service-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(10, 212, 217, 0.1);
    transform: translateY(-5px);
}

.icon-pill {
    width: 100%;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
}

/* Ikon di dalam Pill */
.icon-pill i {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(10, 212, 217, 0.8);
}

/* Judul Layanan */
.service-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(10, 212, 217, 0.3);
}

/* Deskripsi Layanan */
.service-card p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Standard Styling */
.form-control::placeholder {
    color: #ddd !important;
    opacity: 1;
}

/* WebKit Browsers (Chrome, Safari) */
.form-control::-webkit-input-placeholder {
    color: #ddd !important;
}

/* Mozilla Browsers (Firefox) */
.form-control:-moz-placeholder,
.form-control::-moz-placeholder {
    color: #ddd !important;
    opacity: 1;
}

/* Microsoft Browsers (IE, Edge) */
.form-control:-ms-input-placeholder {
    color: #ddd !important;
}

/* --- Mobile Responsive Header Fix --- */

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

/* Style Tombol Hamburger */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Style Link Menu */
.navbar-nav .nav-link {
    color: #eaeaea !important;
    font-weight: 500;
    padding: 8px 15px !important;
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Tampilan Menu Dropdown di Mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        border-bottom: 1px solid var(--secondary-color);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    /* Pastikan tombol konsultasi full width di HP agar mudah ditekan */
    .navbar-nav .btn-custom {
        width: 100%;
        display: block;
        margin-top: 15px;
    }
}