:root {
    --primary-color: #2a6b3a;
    --primary-light: #4a8c5a;
    --secondary-color: #e3b505;
    --accent-color: #d56f2b;
    --dark-color: #1e4b2a;
    --light-color: #f5f9f6;
    --text-dark: #1a2e22;
    --text-medium: #3a4e42;
    --text-light: #6a7e72;
    --white: #fff;
    --black: #121212;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
}


.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.packages-page-section {
    padding: 6rem 0;
    position: relative;
}

.packages-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1586015555751-63bb77f4322a?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.03;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.packages-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.package-page-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.package-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.package-page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-page-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--white);
    transform: skewY(-3deg);
    z-index: 1;
}

.package-page-title {
    font-family: 'Playfair Display', serif;
    color:  var(--light-color);
    font-size: 1.8rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.package-page-duration {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.package-page-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
    background: rgba(90, 145, 73, 0.08);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.highlight-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
}

.package-page-body {
    padding: 2rem 1.8rem;
    position: relative;
    max-height: 400px;
    overflow-y: auto;
}

.package-page-body::-webkit-scrollbar {
    width: 6px;
}

.package-page-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}

.package-page-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.package-page-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.day-plan {
    margin-bottom: 1.8rem;
    position: relative;
    padding-left: 2rem;
}

.day-plan:last-child {
    margin-bottom: 0;
}

.day-plan::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid rgba(90, 145, 73, 0.3);
}

.day-number {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.day-activities {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.included-features {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.features-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.feature-item {
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

.package-page-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-call {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(58, 125, 68, 0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 125, 68, 0.4);
}

.btn-call i {
    margin-right: 8px;
}

.tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }

    .packages-page-grid {
        gap: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        margin-bottom: 1rem;
    }

    .hero p {
        margin-bottom: 1.5rem;
    }

    .packages-page-section {
        padding: 4rem 0;
    }

    .section-page-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .packages-page-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}