/* General Styles */
:root {
    --primary-color: #e67e22;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #d35400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Package Detail Page */
.paket-detail {
    padding: 0;
    background-color: var(--white);
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background-color: #2c3e50;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-out;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 8rem 0 6rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Package Content */
.paket-content {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin: -4rem auto 4rem;
    position: relative;
    max-width: 1200px;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Package Features */
.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.feature-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

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

.feature-box:hover i {
    transform: scale(1.2);
}

/* Itinerary */
.itinerary {
    margin: 3rem 0;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.itinerary h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.itinerary-list {
    list-style: none;
}

.itinerary-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
}

.itinerary-list li:last-child {
    border-bottom: none;
}

.itinerary-list li strong {
    display: inline-block;
    min-width: 80px;
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Price Section */
.price-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-radius: 10px;
    border: 1px dashed var(--primary-color);
}

.price-tag {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.per-person {
    font-size: 1rem;
    color: #666;
}

.price-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    border-radius: 10px;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    margin: 0.5rem;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.cta-button:hover i {
    transform: scale(1.2);
}

.or-divider {
    margin: 1.5rem 0;
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    color: white !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: var(--transition);
}

.phone-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .paket-content {
        padding: 2rem;
        margin: -3rem auto 3rem;
    }
    
    .package-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .paket-content {
        padding: 1.5rem;
        margin: -2rem 1rem 2rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .itinerary {
        padding: 1.5rem 1rem;
    }
    
    .itinerary-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 0;
    }
    
    .itinerary-list li strong {
        margin-bottom: 0.3rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.3rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* Hero Section */
.paket-detail .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/borobudur-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.paket-detail .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Paket Content */
.paket-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin: -4rem auto 3rem;
    position: relative;
    max-width: 1200px;
}

.paket-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.paket-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: #e67e22;
}

.paket-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Package Features */
.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
    display: block;
}

.feature-box h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .paket-detail .hero {
        padding: 4rem 1rem;
    }
    
    .paket-content {
        padding: 1.5rem;
        margin: -2rem 1rem 2rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
}

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

.paket-content {
    animation: fadeIn 0.6s ease-out forwards;
}
