/*
Theme Name: Meddic Kustom
Author: Gemini Assistant
Description: Tema medis minimalis untuk Nexancling. Optimized for Elementor.
Version: 1.2
*/

/* RESET & DASAR */
/* Menggunakan selector yang lebih aman agar tidak merusak padding internal widget Elementor */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Memastikan box-sizing tidak merusak kalkulasi layout Elementor */
*, ::before, ::after {
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* WARNA UTAMA */
:root {
    --primary: #007bff;
    --dark: #1a2c3d;
    --light: #f8f9fa;
    --gray: #6c757d;
}

/* HEADER */
/* Menurunkan z-index agar tidak menutupi menu navigasi/editor Elementor */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 99; 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
}

.btn-book {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* HERO SECTION */
.hero {
    background: var(--light);
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 45px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

/* SERVICES */
.services {
    padding: 80px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}