/* BANNER SECTION**/
.package-hero{
    position: relative;
    height: 80vh;
    min-height: 550px;
    background: url('../images/1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.package-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    );
}

.package-hero .container{
    position: relative;
    z-index: 2;
}

.package-hero h1{
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-hero p{
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 400;
}

.package-hero .btn{
    background: #D97A00;
    color: black;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .4s;
}

.package-hero .btn:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

/* Responsive */

@media(max-width:991px){

    .package-hero h1{
        font-size: 50px;
    }

    .package-hero p{
        font-size: 18px;
    }
}

@media(max-width:576px){

    .package-hero{
        min-height: 450px;
    }

    .package-hero h1{
        font-size: 34px;
    }

    .package-hero p{
        font-size: 15px;
    }

    .package-hero .btn{
        padding: 12px 28px;
    }
}

span{
 color:#F4A62A;
}

/* overview SECTION */
.package-overview{
    padding:100px 0;
    background:#fff;
}

.package-overview img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.sub-title{
    display:inline-block;
    color:#9a531d;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.package-overview h2{
    font-size:48px;
    font-weight:700;
    color:#4f5f32;
    margin-bottom:25px;
    line-height:1.2;
}

.package-overview p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.package-overview .col-lg-6:last-child{
    padding-left:50px;
}

/* Mobile */

@media(max-width:991px){

    .package-overview{
        padding:70px 0;
    }

    .package-overview img{
        height:350px;
        margin-bottom:30px;
    }

    .package-overview .col-lg-6:last-child{
        padding-left:12px;
    }

    .package-overview h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .package-overview h2{
        font-size:30px;
    }

    .package-overview p{
        font-size:15px;
    }

    .package-overview img{
        height:280px;
    }
}

/* MANAGEMENT */
.include-section{
    background:#f8f8f8;
    padding:100px 0;
}

.inc-box,
.exc-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.inc-box:hover,
.exc-box:hover{
    transform:translateY(-8px);
}

.inc-box{
    border-top:5px solid #28a745;
}

.exc-box{
    border-top:5px solid #dc3545;
}

.inc-box h3,
.exc-box h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
}

.inc-box h3{
    color:#28a745;
}

.exc-box h3{
    color:#dc3545;
}

.inc-box ul,
.exc-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.inc-box ul li,
.exc-box ul li{
    position:relative;
    padding:12px 0 12px 40px;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:16px;
}

.inc-box ul li:last-child,
.exc-box ul li:last-child{
    border-bottom:none;
}

.inc-box ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    text-align:center;
    line-height:26px;
    font-size:14px;
    font-weight:700;
}

.exc-box ul li::before{
    content:"✕";
    position:absolute;
    left:0;
    top:10px;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#dc3545;
    color:#fff;
    text-align:center;
    line-height:26px;
    font-size:14px;
    font-weight:700;
}

@media(max-width:991px){

    .inc-box{
        margin-bottom:25px;
    }

    .inc-box,
    .exc-box{
        padding:30px;
    }

    .inc-box h3,
    .exc-box h3{
        font-size:26px;
    }
}


.packages-section{
    background:#f8f8f8;
}

.section-title h2{
    font-size:52px;
    font-weight:700;
    color:#4f5f32;
}

.section-para{
    text-align:center;
    color:#666;
    font-size:17px;
    line-height:1.7;
    margin-bottom:0;
}
.package-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.package-card:hover{
    transform:translateY(-8px);
}

.package-img{
    height:250px;
    overflow:hidden;
}

.package-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.package-card:hover img{
    transform:scale(1.08);
}

.package-content{
    padding:20px;
}

.package-content h4{
    text-align:center;
    font-size:26px;
    font-weight:600;
    color:#4f5f32;
    margin-bottom:20px;
}

.package-info{
    display:flex;
    gap:10px;
    justify-content:center;
    margin-bottom:20px;
}

.info-box{
    flex:1;
    border:1px solid #e5d5c4;
    border-radius:10px;
    text-align:center;
    padding:12px 5px;
}

.info-box i{
    display:block;
    color:#8b4513;
    font-size:22px;
    margin-bottom:8px;
}

.info-box span{
    font-size:14px;
    font-weight:600;
}

.package-content p{
    text-align:center;
    color:#666;
    line-height:1.8;
}

.package-btn{
    display:block;
    text-align:center;
    background:#D97A00;
    color: black;
    text-decoration:none;
    padding:14px;
    border-radius:40px;
    margin-top:20px;
    font-weight:600;
}

/* .package-btn:hover{
    color:#fff;
} */

.all-package-btn{
    background: #D97A00;
    color:black;
    text-decoration:none;
    padding:14px 35px;
    border-radius:40px;
    display:inline-block;
}


.package-overview{
    background:#fff;
}

.sub-title{
    color:#9a531d;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.package-overview h2{
    font-size:46px;
    font-weight:700;
    color:#4f5f32;
    margin:15px 0;
}

.highlight-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.highlight-box:hover{
    transform:translateY(-10px);
}

.highlight-box i{
    font-size:45px;
    color:#9a531d;
    margin-bottom:15px;
}

.inc-box,
.exc-box{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.inc-box h3{
    color:#28a745;
    margin-bottom:20px;
}

.exc-box h3{
    color:#dc3545;
    margin-bottom:20px;
}


/* PRICING CARDS */

.pricing-section{
    background:#f8f8f8;
}

.head h1{
    font-size:52px;
    font-weight:700;
    color:#4f5f32;
    margin-bottom:15px;
}

.head p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.price-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.price-card:hover{
    transform:translateY(-10px);
}

.price-card h4{
    color:#4f5f32;
    font-size:26px;
    font-weight:700;
}

.price-card h2{
    font-size:48px;
    color:#9a531d;
    font-weight:800;
    margin:20px 0;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.price-card ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.price-card ul li:last-child{
    border:none;
}

.price-card ul li::before{
    content:"✓";
    color:#28a745;
    font-weight:700;
    margin-right:10px;
}

.price-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:50px;
    background: #D97A00;
    color: black;
    text-decoration:none;
    font-weight:600;
}

/* .price-btn:hover{
    color:#fff;
} */

.featured{
    background:linear-gradient(135deg,#9a531d,#6b3006);
}

.featured h4,
.featured h2,
.featured ul li{
    color:#fff;
}

.featured ul li{
    border-color:rgba(255,255,255,.15);
}

.featured ul li::before{
    color:#ffd700;
}

.featured .price-btn{
    background:#fff;
    color:#9a531d;
}

.popular-tag{
    position:absolute;
    top:15px;
    right:-10px;
    background:#ffd700;
    color:#000;
    font-size:13px;
    font-weight:700;
    padding:8px 18px;
    border-radius:30px;
}

@media(max-width:768px){

    .head h1{
        font-size:36px;
    }

    .price-card h2{
        font-size:38px;
    }
}


/* CONTACT FORM **/
.inquiry-section{
    background:#f8f8f8;
}

.inquiry-wrapper{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.head h1{
    font-size:52px;
    font-weight:700;
    color:#4f5f32;
    margin-bottom:15px;
}

.head p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.form-control,
.form-select{
    height:58px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:10px 18px;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border-color:#9a531d;
    box-shadow:none;
}

textarea.form-control{
    height:auto;
    resize:none;
    padding-top:15px;
}

.inquiry-btn{
    background: #D97A00;
    color:black;
    border:none;
    padding:15px 45px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.4s;
}

.inquiry-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

@media(max-width:768px){

    .inquiry-wrapper{
        padding:25px;
    }

    .head h1{
        font-size:36px;
    }
}