:root{

--blue:#041B49;
--gold:#E4B545;

}

body{

font-family:Poppins,sans-serif;

background:#f8f8f8;

}

a{

text-decoration:none;

}

/*================================================================================*/
/*================================== Home PAGE ==================================*/
/*================================================================================*/

.top-header {
  background: #03153b;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-header a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: all 0.3s ease;
}

.top-header a:hover {
  color: var(--gold);
}

.top-header span {
  color: rgba(255, 255, 255, 0.3);
}

.logo img {
  height: 80px;
  transition: all 0.3s ease;
}

.login-btn {
  color: var(--blue);
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-btn:hover {
  background: var(--gold);
  color: var(--blue) !important;
}

.register-btn {
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--blue) !important;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.register-btn:hover {
  background: transparent;
  color: var(--blue) !important;
  border-color: var(--blue);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-link {
  color: var(--blue) !important;
  padding: 12px 14px !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link.active {
  color: var(--gold) !important;
  border-bottom: 3px solid var(--gold);
}

.navbar-toggler {
  border-color: rgba(4, 27, 73, 0.25) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(4, 27, 73, 0.1) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23041B49' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero{

background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.1)), url("../images/hero-bg-2.png") center/cover;

padding:70px 0;

position:relative;

}

.hero h5{

color:var(--gold);

font-size:18px;

display: inline;

padding: 6px 12px;

border-radius: 30px;

background-color: var(--blue);

line-height: 2.5;

}

.hero h2{

color:#fff;

font-size: 38px;

}

.hero h1{

color:var(--blue);

font-size:42px;

font-weight:700;

}

.hero p{

color:#fff;

font-size:28px;

}

.plane{

max-width:100%;

}

.search-box{

background:#08265E;

padding:30px;

border-radius:18px;

margin-top:30px;

box-shadow:0 10px 40px rgba(0,0,0,.3);

}

.nav-tabs{

border:none;

margin-bottom:20px;

gap: 0px 16px;


}

.nav-tabs .nav-link{

color:#fff!important;

border:none!important;

background:transparent!important;

transition: all 0.3s ease;

}

.nav-tabs .nav-link:hover{

color:var(--gold)!important;

border:none!important;

background:transparent!important;

}

.nav-tabs .active{

background:none!important;

border:none!important;

border-bottom:3px solid var(--gold)!important;

color:var(--gold)!important;

}

.trip-type{

display:flex;

gap:40px;

color:#fff;

margin-bottom:20px;

}

.form-control,

.form-select{

height:48px;

border-radius:10px;

}

.search-btn{

height:48px;

padding:0 30px;

background:var(--gold);

border:none;

border-radius:10px;

font-size:18px;

font-weight:600;

color:#041B49;

}


.section-title{
font-size:32px;
font-weight:700;
color:#041B49;
}

.view-btn{
padding:8px 18px;
border:1px solid #041B49;
border-radius:8px;
color:#041B49;
font-weight:600;
}

.destination-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.destination-card img{
width:100%;
height:220px;
object-fit:cover;
transition:.5s;
}

.destination-card:hover img{
transform:scale(1.08);
}

.destination-content{
padding:18px;
}

.destination-content h5{
font-weight:700;
margin-bottom:5px;
}

.destination-content span{
color:#c48c00;
font-weight:600;
}

.destination-slider .owl-nav{
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: start;
}

.destination-slider .owl-nav button span{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px ;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    background-color: #03153b;
}



.offer-card{
height:100%;
background:#041B49;
border-radius:20px;
padding:40px 25px;
text-align:center;
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
}

.offer-card h1{
font-size:70px;
color:#E4B545;
font-weight:700;
}

.offer-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#E4B545;
color:#041B49;
border-radius:10px;
font-weight:600;
}

.package-card,
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .35s;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card img,
.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card-body,
.service-card-body {
  padding: 18px 14px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-card-body h6,
.service-card-body h6 {
  margin: 0;
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
  transition: color 0.3s ease;
}

.package-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.package-card:hover img,
.service-card:hover img {
  transform: scale(1.08);
}

.package-card:hover h6,
.service-card:hover h6 {
  color: var(--gold);
}

/*================ WHY US ================*/

.why-us{

background:#041B49;

color:#fff;

}

.why-box{

padding:30px;

}

.why-box i{

font-size:50px;

color:#E4B545;

margin-bottom:20px;

}

.why-box h5{

margin-bottom:15px;

font-weight:600;

}

/*================ NEWSLETTER ================*/

.newsletter{

padding:70px 0;

background:#f6f6f6;

}

.newsletter h2{

font-weight:700;

color:#041B49;

margin-bottom:15px;

}

.newsletter-form{

display:flex;

background:#fff;

border-radius:60px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.newsletter-form input{

flex:1;

border: 2px solid var(--blue);

border-radius: 60px 0 0 60px;

padding:18px 25px;

outline:none;

}

.newsletter-form button{

background:#041B49;

color:#fff;

border:none;

padding:0 35px;

font-weight:600;

}

/*================ FOOTER ================*/

footer{

background:#041B49;

color:#fff;

padding:70px 0 20px;

}

.footer-logo{

width:180px;

margin-bottom:18px;

}

.footer-about{

line-height:28px;

opacity:.9;

}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--blue) !important;
  transform: translateY(-3px);
}

footer h4{

margin-bottom:25px;

font-weight:700;

}

.footer-links,

.contact-list{

list-style:none;

padding:0;

margin:0;

}

.footer-links li,

.contact-list li{

margin-bottom:15px;

}

.footer-links a{

color:#fff;

transition:.3s;

}

.footer-links a:hover{

padding-left:8px;

color:#E4B545;

}

.contact-list i{

color:#E4B545;

width:25px;

}

footer hr{

margin:50px 0 20px;

border-color:rgba(255,255,255,.2);

}

.copyright{

font-size:15px;

}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: var(--gold);
}

/*================================================================================*/
/*================================== ABOUT PAGE ==================================*/
/*================================================================================*/

/*================ PAGE HERO =================*/

.page-hero{
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding:60px 0;
    height: 70vh;
    color:#fff;
}

.about-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_about.png") center/cover no-repeat !important;
}

.contact-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_contact.png") center /cover no-repeat !important;
}

.destinations-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_destinations.jpg") center/cover no-repeat !important;
}

.hotels-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_hotels.jpg") center/cover no-repeat !important;
}

.packages-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_packages.jpg") center/cover no-repeat !important;
}

.services-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_services.png") center/cover no-repeat !important;
}

.visa-hero {
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("../images/hero_visa.png") center/cover no-repeat !important;
}

.page-hero-content h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb-list{
    display:flex;
    align-items:center;
    gap:10px;
    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb-list li,
.breadcrumb-list a{
    color:#fff;
    text-decoration:none;
}

.page-hero-image img{
    width:100%;
    border-radius:18px;
}

/*================ ABOUT COMPANY =================*/

.about-content .section-subtitle{
    color:#E4B545;
    font-weight:600;
    text-transform:uppercase;
}

.about-content p{
    color:#666;
    line-height:30px;
    margin-top:20px;
}

.about-image img{
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/*================ COUNTER =================*/

.about-counter{
    background:#041B49;
    padding:35px 0;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box i{
    font-size:42px;
    color:#E4B545;
    margin-bottom:15px;
}

.counter-box h3{
    font-size:32px;
    font-weight:700;
}

/*================ VALUES =================*/

.value-card{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.value-card i{
    font-size:42px;
    color:#041B49;
    margin-bottom:20px;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card:hover i{
    color:#E4B545;
}


/*==================================================================================*/
/*================================== SERVICE PAGE ==================================*/
/*==================================================================================*/


.services-page{

background:#fff;

}

.section-desc{

max-width:650px;

margin:auto;

color:#666;

margin-top:10px;

}

.service-box{
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius:12px;
  overflow:hidden;
  text-align:center;
  height:100%;
  transition:.35s;
  display:flex;
  flex-direction:column;
}

.service-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-box img {
  width:100%;
  height:160px;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.service-box:hover img {
  transform:scale(1.08);
}

.service-box-body {
  padding:24px 20px;
  flex-grow:1;
  display:flex;
  flex-direction:column;
}

.service-box h5{
  font-weight:700;
  margin-bottom:12px;
  color:#041B49;
  font-size:20px;
  transition:color 0.3s ease;
}

.service-box:hover h5{
  color:var(--gold);
}

.service-box p{
  font-size:15px;
  line-height:26px;
  color:#666;
  margin:0;
}

/*================ WHY BAR ================*/

.why-us{

padding:0;

margin-top:60px;

margin-bottom:25px;

}

.why-us .container{

background:#041B49;

border-radius:10px;

overflow:hidden;

}

.why-item{

display:flex;

align-items:center;

gap:18px;

padding:22px;

color:#fff;

height:100%;

border-right:1px solid rgba(255,255,255,.15);

}

.why-item:last-child{

border:none;

}

.why-item i{

font-size:28px;

color:#E4B545;

}

.why-item h6{

margin:0;

font-size:16px;

font-weight:600;

}

.why-item span{

font-size:14px;

opacity:.8;

}

/*================ TAGLINE ================*/

.bottom-tagline{

margin-bottom:60px;

padding: 14px;

}

.bottom-tagline .container-fluid{

padding: 0 10px ;

background:#041B49;

border-radius:10px;

padding:18px;

text-align:center;

}

.bottom-tagline h4{

margin:0;

color:#fff;

letter-spacing:2px;

font-size:22px;

font-weight:600;

}

.bottom-tagline i{

color:#E4B545;

margin-left:15px;

}


/*==================================================================================*/
/*================================== PACKAGES PAGE ==================================*/
/*==================================================================================*/


.package-list{

background:#fff;

}

/* Sidebar */

.package-sidebar{

background:#fff;

border:1px solid #e8e8e8;

border-radius:12px;

padding:20px;

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.package-sidebar h4{

font-size:22px;

font-weight:700;

margin-bottom:20px;

color:#041B49;

text-transform:uppercase;

}

.package-sidebar ul{

padding:0;

margin:0;

list-style:none;

}

.package-sidebar li{

margin-bottom:4px;

}

.package-sidebar a{

display:block;

padding:8px 14px;

border-radius:8px;

color:#041B49;

font-weight:500;

transition:.3s;

}

.package-sidebar a:hover,

.package-sidebar a.active{

background:#041B49;

color:#fff;

}

/* Tour Card */

.tour-card{

position:relative;

background:#fff;

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.tour-card:hover{

transform:translateY(-8px);

}

.tour-card img{

width:100%;

height:170px;

object-fit:cover;

transition:.5s;

}

.tour-card:hover img{

transform:scale(1.08);

}

.package-tag{

position:absolute;

top:12px;

left:12px;

background:#E4B545;

color:#041B49;

padding:4px 12px;

font-size:12px;

font-weight:700;

border-radius:4px;

text-transform:uppercase;

z-index:2;

}

.tour-content{

padding:14px;

}

.tour-content h5{

font-weight:700;

margin-bottom:8px;

color:#041B49;

}

.tour-content p{

margin-bottom:10px;

color:#777;

font-size:15px;

}

.tour-content h4{

color:#E4B545;

font-weight:700;

margin-bottom:14px;

}

.tour-btn{

display:block;

background:#041B49;

color:#fff;

text-align:center;

padding:12px;

border-radius:8px;

font-weight:600;

transition:.3s;

}

.tour-btn:hover{

background:#E4B545;

color:#041B49;

}

/* CTA */

.package-cta{

padding-bottom:70px;

}

.package-cta-box{

background:#041B49;

padding:30px 40px;

border-radius:12px;

display:flex;

justify-content:space-between;

align-items:center;

}

.package-cta-box h3{

color:#fff;

font-size:28px;

margin-bottom:8px;

}

.package-cta-box p{

color:#d8d8d8;

margin:0;

}

.cta-btn{

background:#E4B545;

color:#041B49;

padding:14px 30px;

border-radius:8px;

font-weight:700;

transition:.3s;

}

.cta-btn:hover{

background:#fff;

color:#041B49;

}


/*==================================================================================*/
/*================================== CONTACT PAGE ==================================*/
/*==================================================================================*/


.contact-section{

background:#fff;

}

.contact-info-box{

height:100%;

padding-right:20px;

}

.contact-text{

color:#666;

line-height:28px;

margin-bottom:35px;

}

.contact-info-list{

padding:0;

margin:0;

list-style:none;

}

.contact-info-list li{

display:flex;

align-items:center;

gap:15px;

margin-bottom:22px;

color:#444;

font-size:15px;

line-height:28px;

}

.contact-info-list i{

height:42px;

width:42px;

background:#041B49;

color:#E4B545;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:18px;

flex-shrink:0;

}

.contact-form-box{

background:#fff;

padding:35px;

border-radius:12px;

border:1px solid #ececec;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contact-form-box .form-control{

height:55px;

border-radius:8px;

border:1px solid #ddd;

box-shadow:none;

}

.contact-form-box textarea.form-control{

height:auto;

resize:none;

padding-top:15px;

}

.contact-form-box .form-control:focus{

border-color:#041B49;

box-shadow:none;

}

.contact-submit-btn{

background:#E4B545;

border:none;

padding:14px 40px;

border-radius:8px;

font-weight:600;

color:#041B49;

transition:.3s;

}

.contact-submit-btn:hover{

background:#041B49;

color:#fff;

}

/*=====================================================================================*/
/*==================================== RESPONSIVE =====================================*/
/*=====================================================================================*/

@media(max-width:991px){

.contact-info-box{

margin-bottom:30px;

padding-right:0;

}

.contact-form-box{

padding:25px;

}


.package-cta-box{

flex-direction:column;

text-align:center;

gap:20px;

}

.why-item{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.15);

}


.navbar-nav {
  text-align: center;
  padding: 15px 0 5px;
}

.nav-link {
  padding: 10px 0 !important;
  border-bottom: none !important;
}

.nav-link.active {
  border-bottom: none !important;
  color: var(--gold) !important;
  background: rgba(228, 181, 69, 0.1);
  border-radius: 8px;
}

.navbar-buttons {
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.hero{

text-align:center;

padding-bottom:120px;

}

.hero h1{

font-size:45px;

}

.search-box{

margin-top:30px;
padding: 20px;

}

.tour-card img{

height: 220px;

}

.offer-card{

margin-top:30px;

}

.newsletter-form{

margin-top:30px;

}

footer .col-lg-4{

margin-bottom:40px;

}


}

@media(max-width:767px){

.hero h1{

font-size:34px;

}

.hero p{

font-size:18px;

}

.section-title{

font-size:28px;

}

.newsletter-form{

flex-direction:column;

border-radius:15px;

}

.newsletter-form button{

padding:15px;

border-radius: 16px;

}

.newsletter-form input{
  border-radius: 16px;
  margin-bottom: 16px;
}

}

@media (max-width:456px){
  .popular-destination-heading{
  max-width: 250px;
}

.trip-type {
  gap: 12px;
}
}

/*================ HOTEL CARD STYLING ================*/
.hotel-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hotel-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.hotel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.hotel-card:hover .hotel-img {
  transform: scale(1.06);
}

.badge-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hotel-info {
  padding: 24px;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.hotel-rating i {
  color: var(--gold);
}

.hotel-rating span {
  margin-left: 6px;
  font-weight: 500;
}

.hotel-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.hotel-location {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-location i {
  color: var(--gold);
}

.hotel-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  height: 67px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.booking-platforms {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

.book-via-text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: #888;
  letter-spacing: 1px;
  display: block;
}

.platform-btn {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
}

.airbnb-btn {
  background: rgba(255, 90, 95, 0.1);
  color: #ff5a5f !important;
}

.airbnb-btn:hover {
  background: #ff5a5f;
  color: #fff !important;
}

.goibibo-btn {
  background: rgba(43, 114, 226, 0.1);
  color: #2b72e2 !important;
}

.goibibo-btn:hover {
  background: #2b72e2;
  color: #fff !important;
}

.makemytrip-btn {
  background: rgba(228, 181, 69, 0.1);
  color: var(--gold) !important;
  border-color: rgba(228, 181, 69, 0.2);
}

.makemytrip-btn:hover {
  background: var(--gold);
  color: #fff !important;
}

/*================ FLIGHT CARD STYLING ================*/
.flight-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.flight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.flight-card-body {
  padding: 24px;
}

.flight-airline {
  font-size: 15px;
  color: var(--blue);
}

.flight-duration hr {
  width: 80px;
  border-top: 2px dashed #ddd;
  opacity: 1;
  margin: 4px auto;
}

.search-btn-custom {
  background: var(--gold) !important;
  color: var(--blue) !important;
  border: 1px solid var(--gold) !important;
  transition: all 0.3s ease;
}

.search-btn-custom:hover {
  background: transparent !important;
  color: var(--blue) !important;
  border-color: var(--blue) !important;
}

.ixigo-btn {
  background: rgba(236, 91, 36, 0.1);
  color: #ec5b24 !important;
}

.ixigo-btn:hover {
  background: #ec5b24;
  color: #fff !important;
}

.indigo-btn {
  background: rgba(0, 45, 98, 0.1);
  color: #002d62 !important;
}

.indigo-btn:hover {
  background: #002d62;
  color: #fff !important;
}

/* Icons replaced by full-width images */