html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff6f6;
  min-height: 100vh;
  position: relative;
}

a:active,
a:hover {
  outline: 0;
}

a {
  color: #898989;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #e44848;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

input:focus-visible {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1c1c1c;
  line-height: normal;
  font-weight: 600;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 24px;
}

p {
  font-size: 16px;
  color: #898989;
  line-height: normal;
  text-align: justify;
}


:root {
  --primary-color: #0B3C5D;
  --secondary-color: #F6EFE7;
  --bg-color: #FFFFFF;
  --text-color: #426463;
  --accent-color: #00A8A8;
  --white-color: #FFFFFF;
  --divider-color: #133D3C1A;
  --dark-divider-color: #FFFFFF1A;
  --error-color: rgb(230, 87, 87);
  --default-font: "Outfit", sans-serif;
}


.navbar .main-logo {
  width: 200px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 18px 55px 18px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-default::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 20px;
  background: url('../images/arrow-white.svg') no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 0;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover {
  color: var(--white-color);
}

.btn-default:hover:before {
  filter: brightness(0) invert(1);
}

.btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.page-footer {
  background: var(--primary-color);
  padding: 10px 0;
  text-align: center;
}




/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	/*background: var(--secondary-color);*/
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a{
	font-size: 18px;
	font-weight: 500;
	line-height: 1em;
	padding: 17px 15px !important;
	color: var(--text-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--secondary-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--text-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-btn{
	display: flex;
	align-items: center;
	gap: 25px;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--secondary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--secondary-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--secondary-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--accent-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-color);
}



@media only screen and (max-width: 991px){

	.readmore-btn{
		font-size: 16px;
	}

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }
}



.route-pages-section {
  padding: 70px 0;
}

.route-pages-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.route-pages-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 52.34%, var(--primary-color) 100%);
  border-radius: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.route-pages-image {
  overflow: hidden;
  border-radius: 40px;
}

.route-pages-image img {
  border-radius: 40px;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  transition: all 0.5s ease-out;
  width: 100%;
}

.route-pages-item:hover .route-pages-image img {
  transform: scale(1.1);
}

.route-pages-content {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.5s ease-in-out;
  width: 100%;
}

.route-pages-content h3 {
  font-size: 22px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.route-pages-content .route-pages-readmore-btn {
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.route-pages-item:hover .route-pages-content .route-pages-readmore-btn {
  height: 50px;
}

.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-left: 16px;
  margin-bottom: 10px;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}



.page-header {
  background: url(../images/section-bg-shape.svg), var(--primary-color);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
  padding: 100px 0;
}

.page-header-box {
  text-align: center;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  margin: 0;
  display: inline-flex;
  justify-content: center;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
  text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  color: var(--white-color);
}

.agent-list-section {
  padding: 20px 0;
}

.agent-list-section .col-md-10 {
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.agent-list-section .col-md-12>.row:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Image */
.agent-list-image img {
  border-radius: 10px;
  object-fit: cover;
  height: 120px;
}

/* Content */
.agent-list-content {
  padding: 5px 10px;
}

.agent-name {
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.agent-location {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 8px;
}

/* Stars */
.agent-stars {
  font-size: 14px;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-count {
  color: var(--text-color);
  font-size: 13px;
}

/* Badges */
.agent-badges {
  margin-top: 10px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  margin-right: 5px;
  font-weight: 500;
}

.badge-verified {
  background: rgba(0, 168, 168, 0.1);
  color: var(--accent-color);
}

.badge-top {
  background: rgba(255, 165, 0, 0.15);
  color: #ff9800;
}

.badge-years {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Pricing */
.agent-pricing {
  text-align: right;
}

.price-from {
  font-size: 13px;
  color: var(--text-color);
}

.price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 5px 0;
}

.price-per {
  font-size: 12px;
  color: var(--text-color);
}

/* Buttons */
.agent-actions {
  margin-top: 10px;
}

.btn-call,
.btn-enquire {
  display: inline-block;
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-call {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-call:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.btn-enquire {
  background: var(--accent-color);
  color: var(--white-color);
}

.btn-enquire:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .agent-pricing {
    text-align: left;
    margin-top: 15px;
  }

  .agent-list-image img {
    height: 100px;
  }
}


.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.seo-page-featured-image {
  margin-bottom: 30px;
}

.seo-page-featured-image img {
  border-radius: 40px;
}

.seo-page-featured-content h2 {
    font-size: 50px;
    margin-bottom: 30px;
}


.header .menu-list-col ul{
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}


#enquiryModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.enquiry-box {
    background: #fff;
    width: 350px;
    padding: 20px;
    margin: 100px auto;
    border-radius: 10px;
    position: relative;
}

.enquiry-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 20px;
    cursor: pointer;
}

.success-popup {
    position: fixed;
    top: 50%;
    right: 50%;
    background: #28a745;
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    z-index: 9999;
    transform: translate(50%);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
}
/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #0b2c3d, #0f6d6a);
    color: #fff;
    padding: 90px 0 110px; /* more height like design */
    position: relative;
}

/* CONTAINER WIDTH FIX */
.hero-section .container {
    /*max-width: 1200px; */
    margin: auto;
    padding: 0 20px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* TITLE */
.hero-section h1 {
    font-size: 48px; /* bigger like UI */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* SUB TEXT */
.sub-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* DESCRIPTION */
.hero-section p {
    font-size: 16px;
    max-width: 650px;
    line-height: 1.7;
    opacity: 0.9;
}

/* TAGS */
.hero-tags {
    margin-top: 25px;
    font-size: 15px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    /*max-width: 1200px;*/
    /*margin: -60px auto 40px; */
    background: #fff;
    padding: 18px 25px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LEFT BUTTONS */
.filter-left {
    display: flex;
    gap: 15px;
}

/* BUTTON STYLE */
.filter-btn {
    border: 1px solid #e0e0e0;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover {
    background: #f5f5f5;
}

/* RIGHT TEXT */
.filter-right {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {

    .hero-section {
        padding: 60px 0 90px;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-top: -50px;
    }
}

/* DROPDOWN WRAPPER */
.dropdown {
    position: relative;
}

/* MENU */
.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 200px;
    display: none;
    z-index: 99;
}

/* ITEMS */
.dropdown-menu div {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.dropdown-menu div:hover {
    background: #f5f5f5;
}

/* CHECKBOX ALIGN */
.dropdown-menu input {
    margin-right: 8px;
}




/* ===== HERO SECTION (FINAL FIXED) ===== */
.hero-section {
    background: linear-gradient(135deg, #0b2c3d, #0f6d6a);
    color: #fff;
    padding: 70px 0;
}

/* FULL WIDTH CONTROL */
.hero-section .container {
    /*max-width: 100%;*/
    padding-left: 30px;
    padding-right: 30px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
    color: #ffffff;
}

/* TITLE */
.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff !important;
}

/* DESCRIPTION */
.hero-section p {
    font-size: 16px;
    max-width: 650px;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}

/* TRUST TAGS */
.hero-tags {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    color: #ffffff;
}

/* ===== CITY SECTION ===== */
.city-section {
    padding: 50px 20px;
}

/* CARD */
.city-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.city-image {
    position: relative;
    height: 180px;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* TITLE ON IMAGE */
.city-title {
    position: absolute;
    bottom: 12px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .city-image {
        height: 130px;
    }
}





/* ===== HERO ===== */
.landing-page-hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(140deg, #EFF6FF 0%, #F0FDF4 55%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.landing-page-hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  z-index: 0;
}

.landing-page-hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-color);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--default-font);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}



.landing-page-hero-section h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.landing-page-hero-section h1 .text-gradient {
  background: linear-gradient(135deg, var(--accent-color), #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-page-hero-section p.lead {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stat-num {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-color);
  margin-top: 3px;
}

/* Hero Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.11);
  animation: floatUp 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hero-card-header h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
}

.hero-card-header p {
  font-size: 12px;
  margin: 0;
}

.trip-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 11px 14px;
  margin-bottom: 10px;
  transition: 0.2s;
}

.trip-item:hover {
  background: #DBEAFE;
}

.trip-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trip-item-icon {
  font-size: 1.3rem;
}

.trip-item-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-color);
}

.trip-item-agents {
  font-size: 11px;
  color: var(--text-color);
}

.trip-item-price {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-color);
}

.hero-card-cta {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  background: linear-gradient(135deg, var(--accent-color), #0EA5E9);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hero-card-cta:hover {
  opacity: 0.9;
}

.float-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 3;
  font-family: var(--heading-font);
}

.float-badge .badge-icon {
  font-size: 1.1rem;
}

.float-badge-1 {
  top: -14px;
  right: -18px;
  animation: floatBadge 3s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 40px;
  left: -28px;
  animation: floatBadge 3.5s ease-in-out infinite 0.8s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.btn-outline-default {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 14px 28px;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
}

.btn-outline-default:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.landing-page-hero-content {
  position: relative;
  z-index: 1;
}
