:root {
    --primary-green: #059669;
    --secondary-green: #10B981;
    --accent-green: #34D399;
    --light-green: #D1FAE5;
    --dark-green: #065F46;
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --medium-gray: #E5E7EB;
    --text-gray: #6B7280;
    --text-dark: #1F2937;
    --accent-gold: #F59E0B;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    font-weight: 800
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

header {
    background-color: rgb(255 255 255 / .95);
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgb(0 0 0 / .05);
    transition: var(--transition);
    backdrop-filter: blur(10px)
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 6px 18px rgb(0 0 0 / .08)
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgb(5 150 105 / .3);
    animation: float 3s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.logo:hover .logo-icon {
    transform: rotate(15deg)
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif
}

.logo-text span {
    color: var(--secondary-green)
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition)
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-green);
    border-radius: 2px;
    transition: width 0.3s
}

.nav-menu li a:hover {
    color: var(--primary-green)
}

.nav-menu li a:hover::after {
    width: 100%
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition)
}

.mobile-menu-btn:hover {
    color: var(--accent-green)
}

.hero {
    background: linear-gradient(rgb(5 150 105 / .85) 0%, rgb(16 185 129 / .85) 100%), url(https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.floating-icon {
    position: absolute;
    color: rgb(255 255 255 / .2);
    font-size: 24px;
    animation: floatAround 15s linear infinite
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg)
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg)
    }

    50% {
        transform: translate(0, 40px) rotate(180deg)
    }

    75% {
        transform: translate(-20px, 20px) rotate(270deg)
    }

    100% {
        transform: translate(0, 0) rotate(360deg)
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2
}

.hero h1 span {
    color: var(--accent-gold);
    position: relative;
    display: inline-block
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgb(255 255 255 / .9);
    line-height: 1.8
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 5px 15px rgb(5 150 105 / .3)
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(5 150 105 / .4)
}

.btn-outline {
    background: #fff0;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-green)
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #D97706);
    box-shadow: 0 5px 15px rgb(245 158 11 / .3)
}

.btn-gold:hover {
    box-shadow: 0 8px 25px rgb(245 158 11 / .4)
}

section {
    padding: 100px 0
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-size: 42px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-green), var(--primary-green));
    border-radius: 2px
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-gray);
    font-size: 18px
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgb(0 0 0 / .04);
    border: 1px solid rgb(0 0 0 / .05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.165, .84, .44, 1);
    height: 100%
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgb(5 150 105 / .12);
    border-color: var(--light-green)
}

.package-image {
    height: 230px;
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray)
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.package-card:hover .package-image img {
    transform: scale(1.08)
}

.package-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.package-body h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.package-excerpt {
    color: var(--text-gray);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1
}

.btn-card-action {
    background-color: var(--light-green);
    color: var(--primary-green);
    font-weight: 600;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%
}

.btn-card-action:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px)
}

.package-detail-page {
    padding: 140px 0 80px;
    background-color: var(--light-gray);
    min-height: 100vh
}

.breadcrumb-container {
    margin-bottom: 30px
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgb(0 0 0 / .03);
    width: fit-content
}

.breadcrumb li {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500
}

.breadcrumb li a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition)
}

.breadcrumb li a:hover {
    color: var(--dark-green);
    text-decoration: underline
}

.breadcrumb li::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin: 0 12px;
    color: var(--medium-gray);
    font-size: 12px
}

.breadcrumb li:last-child::after {
    display: none
}

.breadcrumb li:last-child {
    color: var(--text-dark);
    font-weight: 600
}

.package-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.detail-left-col {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow)
}

.package-header-detail {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 20px
}

.package-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2
}

.package-image-wrapper {
    margin-bottom: 35px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb(0 0 0 / .08)
}

.package-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s
}

.rich-text-container {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8
}

.rich-text-container h2,
.rich-text-container h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-green)
}

.rich-text-container p {
    margin-bottom: 20px
}

.rich-text-container ul,
.rich-text-container ol {
    margin-bottom: 20px;
    padding-left: 20px
}

.rich-text-container li {
    margin-bottom: 10px;
    position: relative
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-green)
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center
}

.cta-button-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgb(37 211 102 / .4);
    transition: var(--transition)
}

.cta-button-wa:hover {
    background: #1faf53;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(37 211 102 / .6)
}

.sidebar-help-text {
    margin-top: 15px;
    text-align: center;
    font-size: .9rem;
    color: var(--text-gray)
}

@media (max-width:992px) {
    .package-grid-detail {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .detail-sidebar {
        position: static;
        margin-top: 20px
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(52 211 153 / .7)
    }

    70% {
        box-shadow: 0 0 0 10px #fff0
    }

    100% {
        box-shadow: 0 0 0 0 #fff0
    }
}

@keyframes iconShake {

    0%,
    100% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(-5deg)
    }

    75% {
        transform: rotate(5deg)
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px
}

.feature-card {
    text-align: center;
    padding: 45px 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--accent-green);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-green), var(--primary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s
}

.feature-card:hover::before {
    transform: scaleX(1)
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / .1)
}

.feature-icon {
    font-size: 50px;
    color: var(--accent-green);
    margin-bottom: 25px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-green);
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
    animation: iconFloat 3s ease-in-out infinite
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    transform: scale(1.1) rotate(10deg)
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-green)
}

.stats {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item {
    padding: 30px
}

.stat-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    animation: spin 10s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px
}

.stat-label {
    font-size: 18px;
    opacity: .9
}

.process {
    background-color: var(--white)
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-green), var(--primary-green));
    z-index: 1
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 200px
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgb(5 150 105 / .3);
    transition: var(--transition);
    animation: bounce 2s infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.process-step:hover .step-icon {
    animation: none;
    transform: scale(1.1)
}

.step-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-green)
}

.testimonials {
    background-color: var(--light-gray)
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease
}

.testimonial-slide {
    min-width: 100%;
    padding: 50px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: var(--light-green);
    opacity: .5
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-dark)
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-green)
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-size: 20px
}

.author-info p {
    color: var(--accent-green);
    font-weight: 600
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px
}

.slider-btn {
    background-color: var(--white);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .05)
}

.slider-btn:hover {
    background-color: var(--accent-green);
    color: var(--white);
    transform: scale(1.1)
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 32px
}

.contact-details {
    list-style: none;
    margin-top: 30px
}

.contact-details li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: var(--transition)
}

.contact-details li:hover {
    transform: translateX(10px);
    background-color: var(--light-green)
}

.contact-details li i {
    color: var(--accent-green);
    font-size: 24px;
    margin-top: 5px;
    animation: iconSpin 5s linear infinite
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-green);
    font-size: 18px
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: var(--transition)
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgb(52 211 153 / .1)
}

footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px
}

.footer-logo span {
    color: var(--accent-green)
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgb(255 255 255 / .1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    animation: socialFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s)
}

@keyframes socialFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.social-icons a:hover {
    background-color: var(--accent-green);
    color: var(--primary-green);
    transform: translateY(-5px) scale(1.1);
    animation: none
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-green)
}

.footer-links ul {
    list-style: none
}

.footer-links ul li {
    margin-bottom: 15px
}

.footer-links ul li a {
    color: rgb(255 255 255 / .8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 0
}

.footer-links ul li a:hover {
    color: var(--accent-green);
    transform: translateX(10px)
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgb(255 255 255 / .1);
    color: rgb(255 255 255 / .7);
    font-size: 14px;
    position: relative;
    z-index: 1
}

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgb(5 150 105 / .3);
    animation: pulse 2s infinite
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(5 150 105 / .4);
    animation: none
}

@media (max-width:992px) {
    .hero h1 {
        font-size: 44px
    }

    .hero p {
        font-size: 17px
    }

    .section-title h2 {
        font-size: 36px
    }

    .stat-number {
        font-size: 40px
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px
    }

    .process-steps::before {
        display: none
    }
}

@media (max-width:768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 280px;
        height: 100vh;
        text-align: left;
        padding: 100px 30px 30px;
        transition: var(--transition);
        gap: 0;
        box-shadow: -5px 0 15px rgb(0 0 0 / .1);
        z-index: 999
    }

    .nav-menu.active {
        right: 0
    }

    .nav-menu li {
        margin: 20px 0
    }

    .nav-menu li a {
        color: var(--text-dark)
    }

    .mobile-menu-btn {
        display: block
    }

    .hero {
        padding: 160px 0 80px
    }

    .hero h1 {
        font-size: 36px
    }

    .hero p {
        font-size: 16px
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px
    }

    section {
        padding: 80px 0
    }

    .section-title h2 {
        font-size: 32px
    }

    .testimonial-slide {
        padding: 30px 20px
    }

    .contact-container {
        grid-template-columns: 1fr
    }

    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:576px) {
    .logo-text {
        font-size: 22px
    }

    .hero h1 {
        font-size: 32px
    }

    .package-price {
        font-size: 32px
    }

    .stat-number {
        font-size: 36px
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 28px
    }
}

::selection {
    background-color: rgb(245 158 11 / .35);
    color: #1F2937
}

/* =========================================
   CUSTOM PAGINATION ALHASANI TRAVEL
   ========================================= */
.custom-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    /* Jarak antar kotak angka */
    justify-content: center;
    align-items: center;
}

.custom-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 10px;
    /* Bentuk kotak membulat modern */
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Efek Hover untuk angka yang bisa diklik */
.custom-pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Efek Aktif (Halaman saat ini) */
.custom-pagination .page-item.active .page-link {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    /* Bayangan hijau menyala */
    pointer-events: none;
    /* Agar halaman aktif tidak bisa diklik lagi */
}

/* Efek Disabled (Mati - misal tombol prev di halaman 1) */
.custom-pagination .page-item.disabled .page-link {
    color: #9CA3AF;
    background-color: #F9FAFB;
    cursor: not-allowed;
    border-color: #E5E7EB;
    box-shadow: none;
}
