/* Price Tag Style */
.price-tag {
    background-color: rgba(13, 110, 253, 0.1); /* Warna biru transparan */
    padding: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin: 1rem 0;
    color: #0d6efd; /* Warna teks biru */
    border: 1px solid rgba(13, 110, 253, 0.2); /* Border tipis dengan warna yang sama */
}

/* Global Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #218838;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), 
                url('../images/hero/hero-borobudur.webp') center/cover no-repeat;
    color: #ffffff;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.min-vh-80 {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-form .form-control,
.hero-form .form-select {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

/* Feature Box */
.feature-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* About Section */
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

/* Package Cards */
.package-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    text-align: center;
}

.package-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Testimonial */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero {
        text-align: center;
    }
    
    .hero-form {
        margin-top: 30px;
    }
    
    .min-vh-80 {
        min-height: auto;
        padding: 80px 0;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-transform: none;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero .btn {
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero .btn-light {
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.hero .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* Tombol aktif di hero section */
.hero .btn:active,
.hero .btn:focus {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: white !important;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5) !important;
    transform: translateY(-1px) !important;
}

.hero .btn:active {
    transform: translateY(0) !important;
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #28a745, #20c997);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero .btn:hover::before {
    opacity: 1;
}

.hero .btn:hover.btn-light {
    color: #ffffff;
    border-color: transparent;
}

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

@media (min-width: 768px) {
    .hero {
        padding: 140px 0 180px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero p {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .hero .btn {
        display: block;
        width: 80%;
        margin: 0 auto 15px;
    }
}

/* Package Cards */
.package-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.package-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.package-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 10px;
}

.discount {
    background-color: #ffc107;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Destination Section */
.destination-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
