﻿/* ======================================================
   PACKAGE DETAIL PAGE
====================================================== */

.package-page {
    background: #f6f8fb;
    overflow-x: hidden;
}


/* ======================================================
   BREADCRUMB
====================================================== */

.breadcrumb {
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 14px 0;
}

    .breadcrumb a {
        color: #ff6b00;
        text-decoration: none;
    }

.breadcrumb-item.active {
    color: #6b7280;
}

/* ======================================================
   PREMIUM LIGHT PACKAGE HEADER
====================================================== */

.package-header {
    position: relative;
    padding: 70px 0 55px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient( 135deg, #ffffff 0%, #f8fbff 45%, #fff8f2 100%);
}


    /* GLOW EFFECTS */

    .package-header::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -120px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient( rgba(255,153,0,.18), transparent 70%);
    }

    .package-header::after {
        content: "";
        position: absolute;
        bottom: -220px;
        left: -120px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient( rgba(37,99,235,.14), transparent 70%);
    }


    /* CONTENT */

    .package-header .container {
        position: relative;
        z-index: 5;
    }


/* BADGE */

.package-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,153,0,.08);
    border: 1px solid rgba(255,153,0,.18);
    color: #ff7a00;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}


/* TITLE */

.package-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #0f172a;
    margin-bottom: 18px;
}


/* LOCATION */

.package-location {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
}


/* PRICE */

.package-price {
    color: #64748b;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
}

    .package-price strong {
        display: inline-block;
        margin: 0 8px;
        font-size: 48px;
        font-weight: 900;
        color: #ff7a00;
    }


/* BUTTONS */

.package-header-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* BUTTON BASE */

.package-header .btn {
    min-width: 190px;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
    text-decoration: none;
}


/* PRIMARY BUTTON */

.package-btn-primary {
    background: linear-gradient( 135deg, #ff7a00, #ffb347);
    color: #fff;
    border: none;
    box-shadow: 0 14px 30px rgba(255,122,0,.18);
}

    .package-btn-primary:hover {
        transform: translateY(-3px);
        color: #fff;
    }


/* OUTLINE BUTTON */

.package-btn-outline {
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #2563eb;
    box-shadow: 0 10px 25px rgba(37,99,235,.08);
}

    .package-btn-outline:hover {
        background: #2563eb;
        color: #fff;
        transform: translateY(-3px);
    }


/* ======================================================
   GALLERY
====================================================== */

.package-gallery-section {
    position: relative;
    padding: 20px 0 0;
    overflow: visible;
}

.package-gallery-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 16px;
    border-radius: 28px;
    overflow: hidden;
}

    .package-gallery-row > div {
        width: 100%;
        padding: 0 !important;
    }

        .package-gallery-row > div:nth-child(1) {
            grid-row: 1 / span 2;
        }

        .package-gallery-row > div:nth-child(4) {
            grid-column: 3;
            grid-row: 1 / span 2;
        }

.package-gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    isolation: isolate;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .package-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
        filter: contrast(1.05) saturate(1.05) brightness(.96);
    }

    .package-gallery-item::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 40%, transparent 100%);
    }

    .package-gallery-item:hover img {
        transform: scale(1.06);
    }


/* ======================================================
   QUICK INFO
====================================================== */

.package-info {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    position: relative;
    z-index: 10;
    margin-top: -70px;
    padding: 0 20px;
}

.info-box {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: .25s ease;
}

    .info-box:hover {
        transform: translateY(-5px);
    }

    .info-box span {
        font-size: 32px;
        display: block;
        margin-bottom: 12px;
    }

    .info-box strong {
        display: block;
        font-size: 24px;
        font-weight: 900;
        color: #111827;
        margin-bottom: 6px;
    }

    .info-box p {
        margin: 0;
        font-size: 14px;
        color: #6b7280;
    }


/* ======================================================
   DETAILS
====================================================== */

.package-details {
    padding: 80px 0;
}


/* ======================================================
   TABS
====================================================== */

.tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab-btn {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    color: #374151;
    transition: .25s ease;
}

    .tab-btn:hover,
    .tab-btn.active {
        background: #ff6b00;
        border-color: #ff6b00;
        color: #fff;
        transform: translateY(-2px);
    }


/* ======================================================
   TAB CONTENT
====================================================== */

.tab-content {
    display: none;
    background: #fff;
    padding: 38px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 6px 24px rgba(15,23,42,.04);
}

    .tab-content.active {
        display: block;
    }


/* ======================================================
   TITLES
====================================================== */

.title-main {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}

    .title-main::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        margin-top: 12px;
        border-radius: 30px;
        background: linear-gradient(90deg,#ff6b00,#2563eb);
    }

.title-sub {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.text-main {
    color: #4b5563;
    line-height: 1.9;
    font-size: 16px;
}


/* ======================================================
   HIGHLIGHTS
====================================================== */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.highlight-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 26px;
    transition: .25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

    .highlight-card:hover {
        transform: translateY(-4px);
        border-color: #ffd9c2;
    }

    .highlight-card span {
        font-size: 30px;
        display: block;
        margin-bottom: 14px;
    }

    .highlight-card p {
        margin: 0;
        font-weight: 700;
        color: #111827;
        line-height: 1.8;
    }


/* ======================================================
   TIMELINE
====================================================== */

.timeline {
    position: relative;
    padding-left: 32px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom,#ff6b00,#2563eb);
    }

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -29px;
        top: 10px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #ff6b00;
        border: 3px solid #fff;
    }

.timeline-content {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

    .timeline-content h4 {
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #111827;
    }

    .timeline-content p {
        margin: 0;
        color: #4b5563;
        line-height: 1.9;
    }


/* ======================================================
   INCLUSION EXCLUSION
====================================================== */

.inc-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.inc-card {
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

.include-card {
    background: #f0fdf4;
    border-top: 4px solid #22c55e;
}

.exclude-card {
    background: #fff7ed;
    border-top: 4px solid #ff6b00;
}

.inc-card h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #111827;
}

.inc-item {
    margin-bottom: 14px;
    line-height: 1.9;
    color: #374151;
}


/* ======================================================
   PRICE CARD
====================================================== */

.price-card-main {
    background: linear-gradient(135deg,#ff6b00,#ff8533);
    color: #fff;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(255,107,0,.18);
}

.price-top {
    background: rgba(255,255,255,.16);
    padding: 10px 22px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 700;
}

.price-value {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
}

    .price-value span {
        display: block;
        font-size: 16px;
        margin-top: 12px;
    }

.price-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .price-features li {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.8;
    }

.btn-price {
    border: none;
    background: #fff;
    color: #ff6b00;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 800;
    transition: .25s ease;
}

    .btn-price:hover {
        background: #111827;
        color: #fff;
    }


/* ======================================================
   OTHER INFO
====================================================== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 28px;
    transition: .25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

    .info-card:hover {
        transform: translateY(-4px);
    }

    .info-card span {
        font-size: 30px;
        display: block;
        margin-bottom: 14px;
    }

    .info-card p {
        margin: 0;
        line-height: 1.9;
        color: #4b5563;
    }


/* ======================================================
   TERMS
====================================================== */

.tc-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.tc-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

.tc-head {
    padding: 16px 22px;
    font-weight: 800;
    color: #fff;
}

    .tc-head.orange {
        background: #ff6b00;
    }

    .tc-head.blue {
        background: #2563eb;
    }

.tc-card p,
.tc-card ul {
    padding: 24px;
    margin: 0;
}

    .tc-card ul li {
        margin-bottom: 12px;
        line-height: 1.8;
        color: #4b5563;
    }

.tc-note {
    margin-top: 28px;
    color: #6b7280;
    font-style: italic;
}


/* ======================================================
   STICKY FORM
====================================================== */

.sticky-form {
    position: sticky;
    top: 110px;
    background: #fff;
    padding: 34px;
    border-radius: 22px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.form-header {
    background: #fff3eb;
    color: #ff6b00;
    padding: 10px 18px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 800;
    margin-bottom: 18px;
}

.sticky-form h3 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 22px;
}

    .sticky-form h3 span {
        color: #ff6b00;
    }

.sticky-form input,
.sticky-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 16px;
    margin-bottom: 16px;
    outline: none;
    transition: .25s ease;
}

    .sticky-form input:focus,
    .sticky-form textarea:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.08);
    }

.sticky-form textarea {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    border: none;
    background: linear-gradient(135deg,#ff6b00,#ff8533);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    transition: .25s ease;
}

    .btn-submit:hover {
        background: linear-gradient(135deg,#2563eb,#3b82f6);
        transform: translateY(-2px);
    }

/* ======================================================
   TABLET
====================================================== */

@media(max-width:991px) {

    .package-header {
        padding: 55px 0 42px;
    }

    .package-title {
        font-size: 42px;
        line-height: 1.12;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .package-badge {
        font-size: 12px;
        padding: 9px 16px;
        margin-bottom: 18px;
    }

    .package-location {
        font-size: 14px;
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .package-price {
        font-size: 15px;
        margin-bottom: 24px;
    }

        .package-price strong {
            font-size: 38px;
        }

    .package-header-actions,
    .hero-btns {
        gap: 12px;
    }

    .package-header .btn,
    .hero-btn {
        min-width: 170px;
        padding: 13px 22px;
        font-size: 14px;
    }

    .package-gallery-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px;
    }

        .package-gallery-row > div:nth-child(1) {
            grid-column: 1 / span 2;
            grid-row: auto;
        }

        .package-gallery-row > div:nth-child(4) {
            grid-column: auto;
            grid-row: auto;
        }

    .package-info,
    .highlight-grid,
    .inc-grid,
    .info-grid,
    .tc-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .package-info {
        margin-top: 24px;
        padding: 0;
    }

    .sticky-form {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}


/* ======================================================
   MOBILE
====================================================== */

@media(max-width:767px) {

    .package-header {
        padding: 46px 0 36px;
    }

    .package-badge {
        font-size: 11px;
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .package-title {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .package-location {
        font-size: 13px;
        line-height: 1.6;
        padding: 10px 14px;
        margin-bottom: 18px;
    }

    .package-price {
        font-size: 14px;
        margin-bottom: 22px;
    }

        .package-price strong {
            display: block;
            margin: 8px 0;
            font-size: 34px;
        }

    .package-header-actions,
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .package-header .btn,
    .hero-btn {
        width: 100%;
        min-width: auto;
        padding: 14px 18px;
        font-size: 14px;
        text-align: center;
    }

    .package-gallery-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
    }

        .package-gallery-row > div:nth-child(1),
        .package-gallery-row > div:nth-child(4) {
            grid-column: auto;
            grid-row: auto;
        }

    .package-gallery-item {
        height: 190px;
        border-radius: 20px;
    }

    .package-info,
    .highlight-grid,
    .inc-grid,
    .info-grid,
    .tc-grid {
        grid-template-columns: 1fr;
    }

    .package-info {
        margin-top: 20px;
        padding: 0;
        gap: 18px;
    }

    .tab-content {
        padding: 24px 18px;
    }

    .tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .price-card-main {
        padding: 34px 20px;
    }

    .price-value {
        font-size: 42px;
    }

    .sticky-form {
        padding: 26px 18px;
    }

        .sticky-form h3 {
            font-size: 26px;
        }
}