.tour-contact-section{
    padding: 70px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a57 50%, #355c7d 100%);
    position: relative;
    overflow: hidden;
}
.tour-contact-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-100px;
    left:-100px;
}
.tour-contact-section::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(255,193,7,0.08);
    border-radius:50%;
    bottom:-80px;
    right:-80px;
}
.tour-contact-card{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.tour-contact-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.18);
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:16px;
}
.tour-contact-title{
    color:#fff;
    font-weight:800;
    margin-bottom:12px;
}
.tour-contact-text{
    color:rgba(255,255,255,0.82);
    margin-bottom:0;
}
.tour-contact-info{
    background:#fff;
    border-radius:24px;
    padding:24px;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}
.tour-contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}
.tour-contact-item:last-child{
    margin-bottom:0;
}
.tour-contact-icon{
    min-width:52px;
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0d6efd,#ffb703);
    color:#fff;
    font-size:20px;
    box-shadow:0 10px 20px rgba(13,110,253,0.18);
}
.tour-contact-item h6{
    margin:0 0 4px;
    font-weight:700;
    color:#1f2d3d;
}
.tour-contact-item p,
.tour-contact-item a{
    margin:0;
    color:#66748c;
    text-decoration:none;
    word-break: break-word;
}
.tour-contact-item a:hover{
    color:#0d6efd;
}
.tour-contact-btns .btn{
    border-radius:50px;
    padding:12px 24px;
    font-weight:700;
}
@media (max-width: 767.98px){
    .tour-contact-card{
        padding:28px 20px;
    }
    .tour-contact-info{
        padding:20px;
    }
}
