
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL & HERO SECTION
══════════════════════════════════════════════════════════════════════════ */
.packages-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: #0c2c17;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.packages-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 44, 23, 0.8) 0%, rgba(12, 44, 23, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════════════════════════════════════ */
.packages-intro {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.intro-inner {
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    margin-bottom: 20px;
    color: #d39f3c;
    font-size: 2rem;
}

.intro-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #9b7826;
    margin-bottom: 20px;
}

.intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #0c2c17;
    line-height: 1.2;
    margin-bottom: 30px;
}

.intro-desc {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #3b4e41;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE ITEMS
══════════════════════════════════════════════════════════════════════════ */
.package-list {
    background: #f4f7f5;
    padding: 60px 0 120px;
}

.package-item {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.package-item:nth-child(even) {
    flex-direction: row-reverse;
}

.package-content {
    flex: 1;
}

.package-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0c2c17;
    margin-bottom: 10px;
}

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE PRICE
══════════════════════════════════════════════════════════════════════════ */
.package-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: #0c2c17;
    color: #d39f3c;
    padding: 7px 18px;
    margin-bottom: 18px;
}

.price-currency {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-right: 3px;
    opacity: 0.9;
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 2px;
}

/* ══════════════════════════════════════════════════════════════════════════
   REST OF PACKAGE CONTENT
══════════════════════════════════════════════════════════════════════════ */
.package-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3b4e41;
    margin-bottom: 30px;
}

.inclusions-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #9b7826;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.inclusions-list li {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #3b4e41;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.inclusions-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #d39f3c;
}

.package-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-read-more {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0c2c17;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #d39f3c;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.btn-read-more:hover {
    color: #d39f3c;
}

.btn-book-now {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    background: #d39f3c;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    transition: background 0.3s ease;
}

.btn-book-now:hover {
    background: #9b7826;
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE SINGLE IMAGE
══════════════════════════════════════════════════════════════════════════ */
.package-single-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    height: 500px;
}

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

.package-single-image:hover img {
    transform: scale(1.05);
}

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE IMAGES (3-GRID LAYOUT)
══════════════════════════════════════════════════════════════════════════ */
.package-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.package-item:nth-child(even) .package-images {
    grid-template-columns: 1fr 1.5fr;
}

.img-main {
    grid-row: 1 / span 2;
    grid-column: 1;
    border-radius: 4px;
    overflow: hidden;
}

.package-item:nth-child(even) .img-main {
    grid-column: 2;
}

.img-sub-1 {
    grid-row: 1;
    grid-column: 2;
    border-radius: 4px;
    overflow: hidden;
}

.package-item:nth-child(even) .img-sub-1 {
    grid-column: 1;
}

.img-sub-2 {
    grid-row: 2;
    grid-column: 2;
    border-radius: 4px;
    overflow: hidden;
}

.package-item:nth-child(even) .img-sub-2 {
    grid-column: 1;
}

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

.package-images div:hover img {
    transform: scale(1.05);
}

/* ══════════════════════════════════════════════════════════════════════════
   CUSTOM PACKAGE BANNER
══════════════════════════════════════════════════════════════════════════ */
.custom-package {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.custom-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #0c2c17;
    margin-bottom: 20px;
}

.custom-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3b4e41;
    margin-bottom: 30px;
}

.custom-image {
    flex: 1;
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .package-item, .package-item:nth-child(even), .custom-package {
        flex-direction: column;
        gap: 40px;
    }

    .package-images {
        width: 100%;
        height: 400px;
    }

    .custom-content {
        padding: 40px 20px;
    }
}

@media (max-width: 640px) {
    .packages-hero { height: 40vh; min-height: 300px; }
    .hero-title { font-size: 2.5rem; }
    .intro-title { font-size: 2.2rem; }
    .package-title { font-size: 2rem; }

    .package-images {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 200px 200px;
        height: auto;
    }

    .img-main, .img-sub-1, .img-sub-2 {
        grid-column: 1 !important;
    }
    .img-main { grid-row: 1; }
    .img-sub-1 { grid-row: 2; }
    .img-sub-2 { grid-row: 3; }

    .package-item { padding: 0 20px; }
    .custom-package { padding: 0 20px; }
}