body {
    font-family: 'Inter', sans-serif;
    background-color: #0c111c;
    color: #e5e7eb;
}

.font-anton {
    font-family: 'Anton', sans-serif;
}

.hero-section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px) brightness(0.6);
    z-index: 0;
    transform: scale(1.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to top, #0c111c 5%, rgba(52, 211, 153, 0.15) 30%, transparent 60%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Color Scheme: Green --- */
.gradient-text-green {
    background: linear-gradient(to right, #34D399, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.accent-green { color: #34D399; }
.btn-green { background-color: #34D399; color: #111827; transition: background-color 0.3s ease, transform 0.2s ease; }
.btn-green:hover { background-color: #10B981; transform: scale(1.05); }
.btn-outline-green { border: 2px solid #34D399; color: #34D399; transition: background-color 0.3s ease, color 0.3s ease; }
.btn-outline-green:hover { background-color: #34D399; color: #111827; }

.package-card {
    background-color: #111827;
    border: 1px solid #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* FAQ Accordion */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary .plus-icon {
    transform: rotate(45deg);
}
.testimonial-card {
        background-color: #111827;
}

/* Scrolling Marquee */
.marquee {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-content span {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    margin: 0 2rem; /* mx-8 */
    color: #6b7280; /* text-gray-500 */
}
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}