/* ==========================================
   GOOGLE FONT
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    color:#222;
    overflow-x:hidden;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-warning{
    border-radius:30px;
    padding:10px 22px;
    font-weight:600;
    transition:.3s;
}

.btn-warning:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,193,7,.35);
}

.btn-outline-light{
    border-radius:30px;
    padding:10px 22px;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar{
    background:rgba(15,23,42,.88)!important;
    backdrop-filter:blur(16px);
    transition:.35s;
    padding:12px 0;
}

.navbar-brand img{
    height:40px;
    transition:.35s;
}

.navbar-brand span{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-left:10px;
}

.nav-link{
    color:#fff!important;
    font-size:16px;
    font-weight:600;
    margin:0 8px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#ffc107!important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#ffc107;
    transition:.35s;
}

.nav-link:hover::after{
    width:100%;
}

.navbar .nav-link.active{
    color:#ffc107!important;
    font-weight:700;
}

.navbar .nav-link.active::after{
    width:100%;
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("assets/images/hero1.jpg");

    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:65px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

.hero .btn{
    padding:15px 40px;
    border-radius:50px;
    font-size:18px;
}

/* ==========================================
   HERO SLIDER
========================================== */

.slider-img{
    width:100%;
    height:100vh;
    object-fit:cover;
    filter:brightness(55%);
}

.carousel-caption{
    bottom:25%;
}

.carousel-caption h1{
    font-size:70px;
    font-weight:700;
}

.carousel-caption p{
    font-size:22px;
    margin:20px 0 35px;
}

.carousel-caption .btn{
    padding:14px 35px;
    border-radius:50px;
}

/* ==========================================
   SEARCH BOX
========================================== */

.search-section{
    position:relative;
    margin-top:-70px;
    z-index:10;
}

.search-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.search-box label{
    font-weight:600;
    margin-bottom:8px;
}

.search-box .form-control,
.search-box .form-select{
    height:55px;
    border-radius:12px;
}

.search-box .btn{
    height:55px;
    border-radius:12px;
}

/* ==========================================
   PAGE HERO
========================================== */

.page-hero{
    position:relative;
    height:500px;          /* կամ 550px */
    margin-top:70px;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:#fff;

    background-size:cover;
    background-repeat:no-repeat;
    background-position:center 35%;
}
.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.page-hero .content{
    position:relative;
    z-index:2;
}

.page-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.page-hero p{
    font-size:20px;
    margin:0;
    opacity:.95;
}

/* ==========================================
   RESPONSIVE HERO
========================================== */

@media (max-width:991px){

    .slider-img{
        height:70vh;
    }

    .hero h1,
    .carousel-caption h1{
        font-size:38px;
    }

    .hero p,
    .carousel-caption p{
        font-size:17px;
    }

    .carousel-caption{
        bottom:15%;
    }

    .search-section{
        margin-top:30px;
    }

    .search-box{
        padding:20px;
    }

    .nav-link{
        margin-left:0;
        padding:12px;
    }

    .btn-warning,
    .btn-outline-light{
        margin-top:10px;
    }
}

/* ==========================================
   TOUR CARDS
========================================== */

.tour-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.tour-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.tour-card img{
    width:100%;
    aspect-ratio:4/5;
    height:auto;
    object-fit:contain;
    background:#fff;
    display:block;
    padding:10px;
}

.tour-content{
    padding:25px;
}

.tour-content h4{
    margin:15px 0;
    font-weight:700;
}

.tour-content p{
    color:#666;
    margin-bottom:15px;
}

.tour-country{
    color:#0d6efd;
    font-size:15px;
    font-weight:600;
}

.tour-duration{
    color:#666;
}

.tour-price{
    color:#198754;
    font-size:24px;
    font-weight:700;
}

.featured-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ffc107;
    color:#000;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.feature-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-box i{
    font-size:60px;
    color:#ffb400;
    margin-bottom:25px;
}

.feature-box h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    margin:0;
}

/* ==========================================
   DESTINATIONS
========================================== */

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.destination-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.destination-card:hover img{
    transform:scale(1.1);
}

.destination-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    color:#fff;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
}

.destination-overlay h3{
    font-weight:700;
    margin-bottom:5px;
}

.destination-overlay p{
    margin:0;
}

/* ==========================================
   GALLERY
========================================== */

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ==========================================
   STATISTICS
========================================== */

.statistics-section{
    background:#f8f9fa;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.stat-icon{
    font-size:50px;
    margin-bottom:15px;
}

.counter{
    font-size:42px;
    font-weight:700;
    color:#ff9800;
}

.stat-card h5{
    margin-top:15px;
    color:#444;
}

/* ==========================================
   CARDS
========================================== */

.card{
    border-radius:20px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 30px rgba(0,0,0,.15);
}

.display-4{
    font-size:60px;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#111;
    color:#ccc;
    padding:80px 0 20px;
}

.footer h3,
.footer h5{
    color:#fff;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffc107;
}

.social-icons a{
    color:#fff;
    font-size:22px;
    margin-right:15px;
    transition:.3s;
}

.social-icons a:hover{
    color:#ffc107;
}

.footer hr{
    border-color:#333;
    margin:40px 0 20px;
}

.footer .map-container{
    width:100%;
    margin-top:30px;
}

.footer .map-container iframe{
    width:100%!important;
    height:500px!important;
    border:0!important;
    border-radius:15px;
    display:block;
}

/* ==========================================
   VISA APPLICATION FORM
========================================== */

.form-control,
.form-select{
    padding:12px;
    border:1px solid #ddd;
    border-radius:12px;
    transition:.3s;
}

.form-control:focus,
.form-select:focus{
    border-color:#ffc107;
    box-shadow:0 0 15px rgba(255,193,7,.3);
}

/* ==========================================
   AGREEMENT MODAL
========================================== */

.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.modal-header{
    background:linear-gradient(135deg,#0d6efd,#0a58ca);
    color:#fff;
}

.modal-title{
    font-weight:700;
}

.modal-body{
    padding:30px;
}

.modal-body ul{
    padding-left:20px;
}

.modal-body ul li{
    margin-bottom:10px;
}

.form-check{
    background:#f8f9fa;
    padding:15px;
    border-radius:10px;
    margin-top:20px;
}

#finalSubmit:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.terms-box{
    max-height:300px;
    overflow-y:auto;
    padding:20px;
    border:1px solid #dee2e6;
    border-radius:12px;
    background:#fafafa;
}

/* ==========================================
   SIGNATURE PAD
========================================== */

#signature-pad{
    width:100%;
    height:220px;
    background:#fff;
    border-radius:10px;
}

input[name="signature"]{
    font-size:17px;
    font-weight:600;
}

/* ==========================================
   MODAL ANIMATION
========================================== */

.modal.fade .modal-dialog{
    transform:translateY(-30px);
    transition:.35s ease;
}

.modal.show .modal-dialog{
    transform:translateY(0);
}


/* CONTACT FEATURES */

.contact-feature{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-feature:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.feature-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:20px;
}

.contact-feature h5{
    font-weight:700;
    margin-bottom:10px;
}

.contact-feature p{
    color:#666;
    margin:0;
}

/* ==========================================
   FAQ
========================================== */

.accordion-item{
    border:none;
    border-radius:15px!important;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.accordion-button{
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#ffc107;
    color:#000;
}

.accordion-button:focus{
    box-shadow:none;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:991px){

    .page-hero{
        height:260px;
        margin-top:70px;
    }

    .page-hero h1{
        font-size:34px;
    }

    .page-hero p{
        font-size:16px;
    }

    .tour-card img{
        height:220px;
    }

    .destination-card img{
        height:300px;
    }

    .gallery-item img{
        height:220px;
    }

    .footer{
        text-align:center;
    }

    .footer .map-container iframe{
        height:320px!important;
    }

}

@media (max-width:576px){

    .hero h1,
    .carousel-caption h1{
        font-size:30px;
    }

    .hero p,
    .carousel-caption p{
        font-size:15px;
    }

    .search-box{
        padding:18px;
    }

    .stat-card{
        padding:30px 15px;
    }

    .counter{
        font-size:34px;
    }

    .display-4{
        font-size:42px;
    }

}