/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a4d2e; /* Hijau Khas Aceh/Islami */
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff9f1c; /* Orange kontras */
    color: #fff;
}

.btn-primary:hover {
    background-color: #e08500;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #1a4d2e;
    color: #1a4d2e;
}

.btn-secondary:hover {
    background-color: #1a4d2e;
    color: #fff;
}

/* Header & Navbar */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d2e;
}

.logo span {
    color: #ff9f1c;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav ul li a:hover {
    color: #1a4d2e;
}

.btn-nav {
    background-color: #1a4d2e;
    color: #white;
    padding: 8px 20px;
    color: #fff !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 77, 46, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1599537504477-ec5a7bb32321?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ff9f1c;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid System & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 10px;
    color: #1a4d2e;
}

/* Package Cards */
.package-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.package-card.featured {
    border: 2px solid #ff9f1c;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9f1c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card h3 {
    margin-bottom: 15px;
    color: #1a4d2e;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9f1c;
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f3f3;
    color: #555;
}

.package-card ul li::before {
    content: "✓ ";
    color: #1a4d2e;
    font-weight: bold;
}

/* Contact Section */
.contact-box {
    background: #1a4d2e;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box h2 {
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .package-card.featured {
        transform: scale(1);
    }
}