* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none !important;
    font-family: "Open Sans", sans-serif;
    list-style: none;
}

:root {
    --primary: #13007d;
    --text-dark: #333333;
    --text-darkest: #2c2c2e;
    --muted: #5c5c5c;
    --disabled: #959595;
    --grey: #868686;
    --border: #d7e2ee;
    --star: #ffc107;
}

html,
body {
    font-family: "Open Sans", sans-serif;
    position: relative;
}

.container {
    max-width: 1440px !important;
    margin-inline: auto;
    padding-inline: 1.9rem;
}

@media (max-width: 1200px) {
    .container {
        padding-inline: 1.5rem;
    }
}

.floating-button {
    position: fixed;
    z-index: 9999;
    bottom: 2.5rem;
    right: 2rem;
    font-size: 2.2rem;
    display: grid;
    place-items: center;
    height: 55px;
    width: 55px;
    color: white;
    background-color: #25d366;
    border-radius: 100px;
    border: none;
    aspect-ratio: 1/1;
    transition: all 0.3s;
}

.floating-button:hover {
    background-color: #13ac4b;
}

.floating-button:hover span {
    display: block !important;
}

@media (max-width: 768px) {
    .floating-button {
        bottom: 2rem;
        font-size: 2rem;
        height: 50px;
        width: 50px;
    }
}

.floating-button span {
    display: none;
    background-color: rgb(245, 245, 245);
    position: absolute;
    right: 120%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    color: black;
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.img-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
    -o-object-position: top center;
    object-position: top center;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: white !important;
    font-weight: 700;
    padding: 12px 22px !important;
    transition: all 0.3s;
}

.btn-primary:hover {
    filter: brightness(1.3);
}

.btn-primary.sm {
    font-size: 14px !important;
}

.btn-primary.xm {
    font-size: 12px !important;
}

.text-muted {
    color: var(--muted) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-grey {
    color: var(--grey) !important;
}

.text-darkest {
    color: var(--text-darkest) !important;
}

.text-gradient {
    background: #13007d;
    background: linear-gradient(to right, var(--primary) 0%, #6248ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: -moz-max-content;
    width: max-content;
}

.text-gradient2 {
    background: #4a7eef;
    background: linear-gradient(to right, #4a7eef 0%, #6248ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: -moz-max-content;
    width: max-content;
}

.title-gradient {
    font-size: 36px;
}

@media (max-width: 992px) {
    .title-gradient {
        font-size: 36px;
    }
}

@media (max-width: 476px) {
    .title-gradient {
        font-size: 28px;
    }
}

.title-gradient span {
    font-weight: 300;
    color: black;
}

.title-gradient b {
    background: #13007d;
    background: linear-gradient(to right, var(--primary) 0%, #6248ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: -moz-max-content;
    width: max-content;
    font-weight: 800;
}

.title-gradient2 {
    font-size: 48px;
}

@media (max-width: 768px) {
    .title-gradient2 {
        font-size: 32px;
    }
}

.title-gradient2 b {
    font-weight: 700;
    background: #4a7eef;
    background: linear-gradient(to right, #4a7eef 0%, #6248ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: -moz-max-content;
    width: max-content;
}

.w-full {
    width: 100%;
}

.grid-center {
    display: grid;
    place-items: center;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    background-color: white;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1;
}

.hero header {
    padding: 0.6rem 1rem;
}

@media (max-width: 768px) {
    .hero header {
        padding: 0.3rem 1rem;
    }
}

.hero header ul.social-links {
    margin-bottom: -1.2rem;
}

@media (max-width: 1200px) {
    .hero header ul.social-links {
        margin-bottom: 0;
    }
}

@media (max-width: 476px) {
    .hero header ul.social-links {
        display: none !important;
    }
}

.hero header ul.social-links li {
    margin-bottom: 0;
}

.hero header ul.social-links li a {
    aspect-ratio: 1/1;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    color: var(--primary);
    font-size: 22px;
    height: 42px;
    width: 42px;
    display: grid;
    place-items: center;
}

.hero header .logo {
    margin-top: 2px;
    height: 180px;
    padding: 40px 10px;
    width: 150px;           
}
@media (max-width: 1200px) {
    .hero header .logo {
        height: 90px;
        padding: 0; 
        width: 90px;
    }
}


.hero nav {
    width: 100%;
}

.hero nav ul.nav-links {
    height: -moz-max-content;
    height: max-content;
    justify-content: space-evenly;
    width: 100%;
}

@media (max-width: 1200px) {
    .hero nav ul.nav-links {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

.hero nav ul.nav-links li {
    height: 100%;
    display: grid;
    place-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
    position: relative;
}

@media (max-width: 1200px) {
    .hero nav ul.nav-links li {
        padding: 12px 20px;
        display: block;
        margin-bottom: 10px;
    }
}

.hero nav ul.nav-links li.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--primary);
}

@media (max-width: 1200px) {
    .hero nav ul.nav-links li.active::after {
        height: 4px;
        bottom: 0;
        left: 25px;
    }
}

.hero nav ul.nav-links a {
    font-size: 18px;
    color: #083765;
    padding: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.hero nav ul.nav-links a:hover {
    filter: brightness(1.5);
}

@media (max-width: 1200px) {
    .hero nav ul.nav-links a {
        font-size: 15px;
    }
}

.hero .xl-nav {
    align-items: center;
}

.hero .sm-nav {
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .sm-nav .navbar-toggler {
    color: white;
    font-size: 22px;
    padding: 14px 18px;
    border-radius: 6px;
    background-color: rgba(112, 139, 189, 0.472);
}

.hero .offcanvas-header .logo img {
    height: 70px;
}

.hero .title {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    padding-bottom: 104px;
    padding-top: 40px;
}

@media (max-width: 1200px) {
    .hero .title {
        font-size: 46px;
        line-height: 56px;
        padding-bottom: 70px;
        padding-top: 30px;
    }
}

@media (max-width: 992px) {
    .hero .title {
        font-size: 36px;
        line-height: 46px;
        padding-bottom: 40px;
    }
}

.hero .filter {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    max-width: 1250px;
    padding: 2.2rem 2rem 2rem 1.4rem;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.237);
    margin: 0 auto;
    width: 100%;
}

.hero .filter .nav {
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .hero .filter .nav {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.hero .filter .nav button,
.hero .filter .nav a {
    background-color: transparent;
    color: var(--disabled);
    border: none;
    --icon: var(--disabled) !important;
    position: relative;
    padding-inline: 2.2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.6px;
}

@media (max-width: 768px) {

    .hero .filter .nav button,
    .hero .filter .nav a {
        padding-inline: 1.5rem;
    }
}

.hero .filter .nav button::after,
.hero .filter .nav a::after {
    content: "";
    position: absolute;
    right: 0;
    top: -14px;
    bottom: -6px;
    width: 1px;
    background-color: var(--border);
}

@media (max-width: 600px) {

    .hero .filter .nav button::after,
    .hero .filter .nav a::after {
        display: none;
    }
}

.hero .filter .nav button:last-child::after,
.hero .filter .nav a:last-child::after {
    display: none;
}

.hero .filter .nav button.active,
.hero .filter .nav a.active {
    --icon: var(--primary) !important;
    color: var(--primary);
    font-weight: 700;
}

.hero .filter .nav button.active .wrapper,
.hero .filter .nav a.active .wrapper {
    display: flex;
    gap: 8px;
    padding-bottom: 1rem;
    position: relative;
}

.hero .filter .nav button.active .wrapper::before,
.hero .filter .nav a.active .wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    height: 4px;
    background-color: var(--primary);
}

.hero .filter .filter-inputs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero .filter .filter-inputs {
        gap: 0.6rem;
        flex-direction: column;
    }
}

.hero .filter .filter-inputs label {
    font-size: 14px;
    font-weight: 600;
    color: #121;
    width: -moz-max-content;
    width: max-content;
    padding: 0px 5px;
    background: white;
    position: relative;
    bottom: -1.7ch;
    left: 12px;
}

.hero .filter .filter-inputs input,
.hero .filter .filter-inputs select {
    border: 1px solid #121;
    padding: 0.9rem 1rem;
    width: 100%;
    border-radius: 4px;
}

.hero .filter .filter-inputs .with-icon {
    position: relative;
}

.hero .filter .filter-inputs .with-icon input {
    padding-right: 2.5rem;
}

.hero .filter .filter-inputs .with-icon i {
    color: var(--muted);
    position: absolute;
    right: 1rem;
    top: 54%;
    transform: -translateY(-50%);
}

.hero .filter .filter-inputs .span-3 {
    width: 27%;
}

.hero .filter .filter-inputs .span-1 {
    width: 13%;
}

.hero .filter .filter-inputs .submit-wrapper {
    margin-top: 36px;
}

.hero .filter .filter-inputs .submit-wrapper button {
    max-width: 410px;
    width: 100%;
}

.hero .filter .filter-inputs .submit-wrapper button i {
    font-size: 18px;
}

.hero .filter .filter-inputs .submit-wrapper button span {
    margin-left: 0.5rem;
    font-size: 14px;
}

@media (max-width: 1024px) {

    .hero .filter .filter-inputs .span-1,
    .hero .filter .filter-inputs .span-3 {
        width: calc(49% - 0.5rem);
    }
}

@media (max-width: 576px) {

    .hero .filter .filter-inputs .span-1,
    .hero .filter .filter-inputs .span-3 {
        width: 100%;
    }
}

.services,
.special-offer,
.news-and-blogs,
.reviews,
.best-services,
.faq {
    padding-top: 88px;
    padding-bottom: 65px;
}

@media (max-width: 1024px) {

    .services,
    .special-offer,
    .news-and-blogs,
    .reviews,
    .best-services,
    .faq {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.services .row,
.special-offer .row,
.news-and-blogs .row,
.reviews .row,
.best-services .row,
.faq .row {
    padding-top: 40px;
    row-gap: 40px;
}

@media (max-width: 1024px) {

    .services .row,
    .special-offer .row,
    .news-and-blogs .row,
    .reviews .row,
    .best-services .row,
    .faq .row {
        padding-top: 30px;
    }
}

.services .card,
.services .item,
.special-offer .card,
.special-offer .item,
.news-and-blogs .card,
.news-and-blogs .item,
.reviews .card,
.reviews .item,
.best-services .card,
.best-services .item,
.faq .card,
.faq .item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.15);
    border: 0;
}

.services,
.hotel-resort {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 1024px) {

    .services .row .card-col,
    .hotel-resort .row .card-col {
        display: grid;
        place-items: center;
    }
}

.services .card,
.hotel-resort .card {
    height: 100% !important;
    max-width: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.15);
    border: 0;
}

.services .card img,
.hotel-resort .card img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 420px;
    max-height: 270px;
    height: 100%;
}

.services .card .desc,
.hotel-resort .card .desc {
    height: 72px;
    overflow: hidden;
    font-size: 14px;
}

.services .card div.d-flex,
.hotel-resort .card div.d-flex {
    gap: 12px;
}

.services .card-title,
.hotel-resort .card-title {
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 768px) {

    .services .card-title,
    .hotel-resort .card-title {
        font-size: 20px;
    }
}

.services .card-description,
.hotel-resort .card-description {
    font-size: 14px;
}

.services .bg-red,
.hotel-resort .bg-red {
    background-color: red;
}

.services .card-body,
.hotel-resort .card-body {
    padding-top: 24px;
    padding-inline: 22px;
}

@media (max-width: 768px) {

    .services .card-body,
    .hotel-resort .card-body {
        padding-top: 20px;
        padding-inline: 16px;
    }
}

.services .card-body .title-link,
.hotel-resort .card-body .title-link {
    transition: all 0.3s;
}

.services .card-body .title-link:hover,
.hotel-resort .card-body .title-link:hover {
    color: var(--primary);
}

.services .card-body .rate b,
.hotel-resort .card-body .rate b {
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {

    .services .card-body .rate b,
    .hotel-resort .card-body .rate b {
        font-size: 16px;
    }
}

@media (max-width: 425px) {

    .services .card-body .rate b,
    .hotel-resort .card-body .rate b {
        font-size: 14px;
    }
}

.services .card-body .rate span,
.hotel-resort .card-body .rate span {
    font-size: 16px;
}

@media (max-width: 768px) {

    .services .card-body .rate span,
    .hotel-resort .card-body .rate span {
        font-size: 13px;
    }
}

.services .card-body .btn-primary,
.hotel-resort .card-body .btn-primary {
    height: -moz-max-content;
    height: max-content;
    padding-inline: 24px !important;
}

@media (max-width: 768px) {

    .services .card-body .btn-primary,
    .hotel-resort .card-body .btn-primary {
        font-size: 13px;
        padding-inline: 20px !important;
    }
}

@media (max-width: 425px) {

    .services .card-body .btn-primary,
    .hotel-resort .card-body .btn-primary {
        font-size: 11px;
        padding: 8px 14px !important;
    }
}

.hotel-resort {
    padding-top: 40px !important;
}

.discover .item {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 75px 0;
}

@media (max-width: 1526px) and (min-width: 768px) {
    .discover .item {
        padding-inline: 70px;
    }
}

@media (max-width: 768px) {
    .discover .item {
        row-gap: 16px;
    }
}

.discover .item::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 61.98%);
}

.discover .item .wrapper {
    position: relative;
    z-index: 2;
}

.discover .item h1 {
    font-size: 48px;
    font-weight: 700;
    max-width: 50%;
}

@media (max-width: 1024px) {
    .discover .item h1 {
        font-size: 36px;
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .discover .item h1 {
        font-size: 28px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .discover .item h1 {
        font-size: 24px;
    }
}

.discover .item p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    max-width: 60%;
}

@media (max-width: 1024px) {
    .discover .item p {
        font-size: 18px;
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .discover .item p {
        font-size: 14px;
        font-weight: 600;
        max-width: 100%;
    }
}

.discover .item a,
.discover .item button,
.discover .item .btn {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    max-width: 263px;
}

@media (max-width: 768px) {

    .discover .item a,
    .discover .item button,
    .discover .item .btn {
        max-width: 200px;
    }
}

.discover .item .title, .discover .item .desc {
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .discover .item .title, .discover .item .desc {
        margin-bottom: 30px;
    }
}

.discover {
    position: relative;
}

@media (max-width: 768px) {
    .discover .wrapper {
        margin-inline: auto;
        max-width: 80vw !important;
    }
}

.discover .owl-nav button {
    font-size: 16px;
}

@media (max-width: 768px) {
    .discover .owl-nav button {
        font-size: 13px;
    }
}

.discover .owl-nav button.owl-prev, .discover .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
}

.discover .owl-nav button.owl-prev::before, .discover .owl-nav button.owl-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--primary);
    font-size: 20px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    width: 42px;
    background: rgb(226, 226, 226);
}

@media (max-width: 768px) {
    .discover .owl-nav button.owl-prev::before, .discover .owl-nav button.owl-next::before {
        height: 35px;
        width: 35px;
    }
}

.discover .owl-nav button.owl-prev::before:hover, .discover .owl-nav button.owl-next::before:hover {
    background-color: red !important;
}

.discover .owl-nav button.owl-prev {
    left: 3vw;
}

.discover .owl-nav button.owl-prev::before {
    content: "\f053";
}

.discover .owl-nav button.owl-next {
    right: 6vw;
}

.discover .owl-nav button.owl-next::before {
    content: "\f054";
}

@media (max-width: 992px) {
    .discover .owl-nav button.owl-next {
        right: 8vw;
    }
}

@media (max-width: 448px) {
    .discover .owl-nav button.owl-next {
        right: 10vw;
    }
}

.special-offer .owl-nav {
    display: none;
}

.special-offer .card-col {
    display: grid;
    place-items: center;
}

.special-offer .item {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(88, 88, 88, 0.5);
    min-height: 448px;
    max-width: 316px;
    width: 100%;
}

.special-offer .item .header {
    padding: 22px;
}

.special-offer .item .header b {
    font-size: 22px;
}

.special-offer .item .header span {
    font-size: 16px;
}

.special-offer .item .footer {
    padding: 28px 34px;
}

.special-offer .item .footer button,
.special-offer .item .footer a,
.special-offer .item .footer .btn {
    font-size: 14px;
    padding: 8px 16px;
    display: block;
    width: 100%;
}

.special-offer .item .footer .title {
    font-size: 24px;
    font-weight: 600;
}

.special-offer .item .footer .desc {
    font-size: 14px;
}

.news-and-blogs .row {
    row-gap: 40px;
}

.news-and-blogs .card {
    height: 100%;
}

.news-and-blogs .card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-and-blogs .card-body .card-title,
.news-and-blogs .card-body .card-text {
    margin: 0;
}

.news-and-blogs .card-body .card-text {
    font-size: 12px;
}

.news-and-blogs .card-body .card-title {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .news-and-blogs .card-col {
        display: grid;
        place-items: center;
    }
}

.news-and-blogs .card-col-lg .card {
    border-radius: 0 !important;
}

.news-and-blogs .card-col-lg .card .card-body {
    padding: 11px 26px 24px 26px;
}

.news-and-blogs .card-col-lg .card img {
    max-height: 350px;
    max-width: 751px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-and-blogs .card-col-sm .card {
    max-width: 321px;
    width: 100%;
}

.news-and-blogs .card-col-sm .card .card-body {
    padding: 10px 19px 18px 19px;
}

.news-and-blogs .card-col-sm .card img {
    max-height: 188px;
    max-width: 321px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.reviews {
    padding-top: 65px !important;
}

.reviews .row {
    row-gap: 3rem;
}

@media (max-width: 1024px) {
    .reviews .item-col {
        display: grid;
        place-items: center;
    }
}

.reviews .item {
    padding: 1.5rem;
    background: white;
    position: relative;
    z-index: 2;
    box-shadow: 26px 26px 0 rgba(19, 0, 125, 0.14);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    max-width: 377px;
    width: 100%;
}

.reviews .item .title {
    font-size: 24px;
    font-weight: 700;
    color: #112211;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .reviews .item .title {
        font-size: 22px;
    }
}

.reviews .item .desc {
    color: #112211;
    font-size: 14px;
    font-weight: 400;
}

.reviews .item .header .btn {
    color: var(--text-darkest);
    transition: all 0.3s;
    font-weight: 600;
}

.reviews .item .header .btn:hover {
    filter: brightness(1.05);
}

.reviews .item .body .stars {
    font-size: 22px;
    margin-bottom: 20px;
}

.reviews .item .body .stars .active {
    color: var(--star);
}

.reviews .item .body .stars img.icon {
    height: 24px;
    width: 24px;
}

.reviews .item .body .username {
    margin-bottom: 12px;
}

.reviews .item .body .username p {
    color: var(--text-darkest);
    font-size: 14px;
    font-weight: 700;
}

.reviews .item .body .username span {
    font-size: 12px;
    font-weight: 500;
}

.reviews .item .body .username img.icon {
    width: 24px;
    height: 24px;
}

.reviews .item .footer {
    margin-top: 40px;
}

.reviews .item .footer img {
    max-width: 377px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.best-services {
    padding: 50px 0;
    padding-bottom: 80px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.best-services h1 {
    font-family: "Poppins", sans-serif;
}

.best-services::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 88, 83, 0.05);
    z-index: 1;
}

.best-services .container {
    position: relative;
    z-index: 2;
}

.best-services .items-row {
    margin-top: 85px;
}

@media (max-width: 1024px) {
    .best-services .items-row {
        margin-top: 30px;
    }
}

@media (max-width: 1024px) {
    .best-services .item-col {
        display: grid;
        place-items: center;
    }
}

.best-services .item {
    background-color: white;
    max-width: 250px;
    width: 100%;
    padding: 14px;
    aspect-ratio: 1/1;
    margin: auto;
}

.best-services .item img {
    height: 42px;
    width: 42px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.best-services .item h2 {
    color: #222;
    font-family: Poppins;
    font-size: 36px;
    font-weight: 700;
}

.best-services .item p {
    color: #222;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .best-services .item img {
        height: 36px;
        width: 36px;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .best-services .item h2 {
        font-size: 28px;
    }

    .best-services .item p {
        font-size: 18px;
    }
}

.faq {
    padding-top: 40px !important;
}

.faq .title-gradient {
    font-size: 32px;
}

@media (max-width: 768px) {
    .faq .title-gradient {
        font-size: 26px;
    }
}

.faq .accordion-row {
    margin-top: 77px;
}

@media (max-width: 1024px) {
    .faq .accordion-row {
        margin-top: 40px;
    }
}

.faq .accordion {
    margin-top: 16px;
}

.faq .accordion-button {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    background-color: transparent !important;
    color: #585858;
    
}

.faq .accordion-button::after {
    display: none;
}

.faq .accordion-button i {
    display: none;
}


/* Show the PLUS sign when the button is NOT collapsed (the initial state) */
.faq .accordion-button:not(.collapsed) .plus {
    display: inline-block !important;
}

/* Show the MINUS sign when the button IS collapsed (the clicked/open state) */
.faq .accordion-button.collapsed .minus {
    display: inline-block !important;
}


.payment-options .item img {
    max-width: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}


.gallery-modal {
    position: fixed;
    display: none;
    z-index: 9000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.gallery-modal.show {
    display: block !important;
}

.gallery-modal .modal-body {
    height: 100%;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.gallery-modal .modal-body img {
    max-height: 95vh;
    max-width: 85vw;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 7%;
    bottom: 7%;
    left: 5vw;
    right: 5vw;
    display: none;
    margin: auto;
    z-index: 9001;
}

.gallery-modal .modal-body img.active {
    display: inline-block;
}

.gallery-modal .modal-body .close,
.gallery-modal .modal-body .next,
.gallery-modal .modal-body .prev {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9002;
}

.gallery-modal .modal-body .close {
    top: 5%;
}

.gallery-modal .modal-body .prev {
    right: unset;
    left: 5%;
}



/* Social Media Brand Colors */



/* Header Social Links */

.hero header ul.social-links li a .fa-x-twitter {
    color: #000000 !important; /* X Black */
}

.hero header ul.social-links li a .fa-instagram {
    /* The Instagram Gradient */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero header ul.social-links li a .fa-facebook-f {
    color: #1877F2 !important; /* Facebook Blue */
}

.hero header ul.social-links li a .fa-youtube {
    color: #FF0000 !important; /* YouTube Red */
}

.hero header ul.social-links li a .fa-whatsapp {
    color: #25D366 !important; /* WhatsApp Green */
}

/* Hover Effects for Brand Colors */

.hero header ul.social-links li a:hover .fa-facebook-f,
    color: #166fe5 !important; /* Darker Facebook Blue */
}

.hero header ul.social-links li a:hover .fa-youtube,

    color: #cc0000 !important; /* Darker YouTube Red */
}

.hero header ul.social-links li a:hover .fa-whatsapp,

    color: #128c7e !important; /* Darker WhatsApp Green */
}

/* Override the existing .hero .filter styles to make it smaller */

.hero .filter.compact {
    max-width: 850px !important;
    width: 820px !important;
    padding: 15px !important;
    margin: 0 auto !important;
    border: 2px solid #BA964E !important;
}

/* Mobile Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero .filter.compact {
        max-width: 90% !important;
        width: 90% !important;
        padding: 12px !important;
    }
}

/* Tablet (768px to 1023px) */
@media (max-width: 768px) {
    .hero .filter.compact {
        max-width: 95% !important;
        width: 95% !important;
        padding: 10px !important;
        margin: 10px auto !important;
    }
    
    /* Make tabs stack vertically on mobile */
    .hero .filter.compact .nav {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    /* Keep tabs perfectly centered with proper sizing */
    .hero .filter.compact .nav button,
    .hero .filter.compact .nav a {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 12px 1rem !important;
        font-size: 14px !important;
    }
    
    /* Keep wrapper centered with proper spacing for underline */
    .hero .filter.compact .nav button.active .wrapper,
    .hero .filter.compact .nav a.active .wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        text-align: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        position: relative !important;
        padding-bottom: 12px !important; /* Space for underline */
    }
    
    /* Fix the underline with proper positioning */
    .hero .filter.compact .nav button.active .wrapper::before,
    .hero .filter.compact .nav a.active .wrapper::before {
        content: "" !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        height: 4px !important;
        background-color: var(--primary) !important;
        border-radius: 2px !important;
        width: 80% !important;
        max-width: 150px !important;
        min-width: 60px !important;
    }
    
    /* Keep icons and text together and centered */
    .hero .filter.compact .nav button.active .wrapper svg,
    .hero .filter.compact .nav a.active .wrapper svg {
        flex-shrink: 0 !important;
        margin: 0 !important;
        width: 24px !important;
        height: 24px !important;
        order: 1 !important;
    }
    
    .hero .filter.compact .nav button.active .wrapper span,
    .hero .filter.compact .nav a.active .wrapper span {
        flex-shrink: 0 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        order: 2 !important;
        text-align: center !important;
    }
    
    /* For inactive tabs - keep them centered too */
    .hero .filter.compact .nav button:not(.active) .wrapper,
    .hero .filter.compact .nav a:not(.active) .wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Ensure all elements stay centered */
    .hero .filter.compact .nav button svg,
    .hero .filter.compact .nav a svg {
        flex-shrink: 0 !important;
        margin: 0 !important;
        width: 24px !important;
        height: 24px !important;
    }
    
    .hero .filter.compact .nav button span,
    .hero .filter.compact .nav a span {
        flex-shrink: 0 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        text-align: center !important;
    }
    
    /* Remove the vertical lines between tabs on mobile */
    .hero .filter.compact .nav button::after,
    .hero .filter.compact .nav a::after {
        display: none !important;
    }
    
    /* Fix form inputs on mobile */
    .hero .filter.compact .filter-inputs {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .hero .filter.compact .filter-inputs input,
    .hero .filter.compact .filter-inputs select {
        height: 45px !important;
        font-size: 16px !important; /* Prevent zoom on iOS */
        padding: 10px 12px !important;
        border: 1px solid #ccc !important;
        border-radius: 5px !important;
    }
    
    .hero .filter.compact .filter-inputs label {
        font-size: 14px !important;
        margin-bottom: 5px !important;
        position: static !important; /* Remove floating label on mobile */
        background: transparent !important;
        left: 0 !important;
        bottom: 0 !important;
    }
    
    /* Fix submit button on mobile */
    .hero .filter.compact .filter-inputs .submit-wrapper {
        margin-top: 10px !important;
    }
    
    .hero .filter.compact .filter-inputs .submit-wrapper button {
        width: 100% !important;
        height: 45px !important;
        font-size: 16px !important;
        padding: 10px 20px !important;
    }
}

/* Mobile Small (576px and below) */
@media (max-width: 576px) {
    .hero .filter.compact {
        max-width: 98% !important;
        width: 98% !important;
        padding: 8px !important;
        margin: 5px auto !important;
    }
    
    .hero .filter.compact .nav button,
    .hero .filter.compact .nav a {
        padding: 10px 8px !important;
        font-size: 13px !important;
    }
    
    .hero .filter.compact .nav button.active .wrapper,
    .hero .filter.compact .nav a.active .wrapper {
        gap: 6px !important;
        padding-bottom: 10px !important;
    }
    
    .hero .filter.compact .nav button.active .wrapper::before,
    .hero .filter.compact .nav a.active .wrapper::before {
        height: 3px !important;
        max-width: 120px !important;
    }
    
    .hero .filter.compact .filter-inputs input,
    .hero .filter.compact .filter-inputs select,
    .hero .filter.compact .filter-inputs .submit-wrapper button {
        height: 48px !important; /* Larger for small screens */
        font-size: 16px !important;
    }
}

/* Fix for Bootstrap responsive columns */
@media (max-width: 768px) {
    .hero .filter.compact .filter-inputs .col-md-3,
    .hero .filter.compact .filter-inputs .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 8px !important;
    }
}

/* Desktop improvements */
@media (min-width: 769px) {
    .hero .filter.compact .filter-inputs {
        gap: 12px !important;
    }
    
    .hero .filter.compact .filter-inputs input,
    .hero .filter.compact .filter-inputs select {
        height: 42px !important;
        font-size: 14px !important;
    }
    
    .hero .filter.compact .filter-inputs .submit-wrapper button {
        height: 42px !important;
        font-size: 14px !important;
    }
}

/* ========================================================================= */
/* FINAL HEADER & HERO STYLES (VERSION 6 - FINAL ALIGNMENT)
/* ========================================================================= */

:root {
    --header-height: 76px; 
}

/* --- Main Header Structure & Alignment --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    height: var(--header-height);
}

.main-header .header-content {
    
    display: flex;
    align-items: center; /* This is the key for VERTICAL alignment */
    justify-content: space-between; /* This handles HORIZONTAL alignment */
    height: 100%;
    max-width: 1440px; /* Aligns with your main container width */
    margin: 0 auto;
    padding: 0 2rem;
}

.main-header.transparent-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header.scrolled-header {
    background-color: #101827;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- Header Components --- */

.header-logo img {
    margin-top: 12px;
    height: 55px;
    display: block; /* Helps prevent extra space below image */
}

.header-nav {
    display: flex;
    align-items: center; /* Ensures nav links are centered within their own container */
    gap: 2rem;
}

.nav-link {
    margin-top: 12px;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s ease;
}

.transparent-header .nav-link { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.scrolled-header .nav-link { color: #F5F5F4; }
.nav-link:hover { color: #d97706; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #f59e0b, #fca5a5);
    transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-link:hover::after { width: 100%; }

/* Prominent Phone Button CTA */
.btn-phone-cta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #E8B006, #CD8E06);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}
.btn-phone-cta:hover {
    margin-top: 2px;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.btn-phone-cta .icon { font-size: 1.1rem; }


/* --- Hero Section Styles --- */

.hero-section {
    height: 100vh; position: relative; display: flex; align-items: flex-end; color: white;
}
.hero-carousel, .hero-slide, .hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-slide {
    background-size: cover; background-position: center; opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent),
                linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.hero-content-overlay {
    position: relative; z-index: 2; padding-bottom: 120px;
}


.hero-text-content { position: relative; min-height: 200px; }
.hero-text {
    position: absolute; bottom: 0; opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-text.active { opacity: 1; transform: translateY(0); }

.hero-headline {
    font-family: 'Playfair Display', serif; /* <-- ADD THIS LINE */
    font-weight: 800; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    white-space: nowrap;
    font-size: 30px;
}
.hero-subheadline {
    opacity: 0.9; 
    max-width: 500px;
    font-size: 18px;
}
.hero-cta-price {
    color: #E5AC08; font-weight: 700;
    font-size: 20px;
}

.hero-buttons { margin-top: 1.5rem; display: flex; gap: 1rem; }
.btn-hero-primary, .btn-hero-secondary {
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 12px 24px;
    min-height: 48px;
}
.btn-hero-primary {
    background: linear-gradient(to right, #E8B006, #CD8E06); 
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.btn-hero-primary:hover { transform: scale(1.05); }
.btn-hero-secondary {
    background: white; color: #1f2937; border: 2px solid white;
}
.btn-hero-secondary:hover { background: #f3f4f6; }

/* --- Mobile Menu Styles --- */

.mobile-menu-btn { background: none; border: none; font-size: 24px; }
.transparent-header .mobile-menu-btn { color: white; }
.scrolled-header .mobile-menu-btn { color: #F5F5F4; }
.mobile-menu {
    position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: white;
    z-index: 1001; transition: left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex; flex-direction: column;
}
.mobile-menu.open { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 0 1rem; height: var(--header-height); border-bottom: 1px solid #e5e7eb; }
.header-logo-mobile img { height: 55px; }
.close-mobile-menu-btn { background: none; border: none; font-size: 32px; color: #4b5563; }
.mobile-menu-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link { font-size: 1.5rem; font-weight: 700; color: #374151; padding: 0.8rem 0; }
.mobile-menu-footer { margin-top: auto; border-top: 1px solid #e5e7eb; padding-top: 1.5rem; }
.btn-phone-cta-mobile {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    text-align: center; background: linear-gradient(to right, #E8B006, #CD8E06); 
    color: white; font-weight: 700; padding: 0.8rem 1.5rem; 
    border-radius: 999px;
}
.btn-phone-cta-mobile:hover {
    color: white;
}


/* --- Responsive Breakpoints --- */

@media(min-width: 768px) { /* Medium screens and up */
    .hero-headline { font-size: 48px; }
    .hero-subheadline { font-size: 20px; }
}
@media(max-width: 991px) { /* Small tablets and below */
    .main-header .header-content { padding: 0 1rem; }
}
@media(max-width: 768px) { /* Mobile */
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; text-align: center;}
    .hero-content-overlay { padding-bottom: 100px; }
}

/* ========================================================= */
/* FINAL AWARDS BADGE STYLES
/* ========================================================= */

/* This is the main style for desktop and tablets */
.awards-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(21, 18, 29, 0.5);
    backdrop-filter: blur(8px);
    padding: 10px 15px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px; /* Desktop font size */
}

.awards-badge span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: white;
    white-space: nowrap; /* Prevents text from wrapping on desktop */
}

.awards-badge i {
    color: #D09106;
    font-size: 1.75rem;
}

/* This is the targeted fix for small phones */
@media (max-width: 480px) {
    .awards-badge {
        padding: 6px 10px; /* Make the badge itself a bit smaller */
    }
    .awards-badge span {
        font-size: 11px; /* Reduce font size on small phones */
        white-space: normal; /* Allow text to wrap */
        text-align: left;
        line-height: 1.3;
    }
    .awards-badge i {
        font-size: 1.5rem; /* Reduce icon size on small phones */
    }
}

/* ========================================================================= */
/* NEW FOOTER STYLES (VERSION 3)
/* ========================================================================= */

.new-footer {
    background-color: #101827;
    color: #9CA3AF;
    padding: 60px 0 20px 0;
    font-size: 14px;
}

.new-footer .footer-title {
    color: #E5AC08;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-footer .footer-list {
    list-style: none;
    padding-left: 0;
}

.new-footer .footer-list li {
    margin-bottom: 14px;
}

.new-footer .footer-list a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.new-footer .footer-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Styles for the new Contact Info column */
.contact-details-list .contact-item-new {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-details-list i {
    color: #E5AC08;
    font-size: 1.1rem;
    margin-top: 4px;
    width: 20px;
}
.contact-details-list a, .contact-details-list span {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
}
.contact-details-list a:hover {
    color: #ffffff;
    padding-left: 0;
}
.contact-details-list .sub-text {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}


/* --- Divider & Bottom Bar --- */

.new-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.new-footer .footer-bottom-bar, .new-footer .footer-contact-info {
    align-items: center;
}

.new-footer .social-icons-wrapper {
    display: flex;
    justify-content: center; /* Center on mobile */
    margin-bottom: 20px;
}

.new-footer .social-icons {
    display: flex;
    gap: 15px;
}
/* --- Footer Social Icon Brand Colors --- */
.new-footer .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.new-footer .social-icons a {
    font-size: 1.5rem;
}
.new-footer .social-icons .fa-x-twitter { color: #FFFFFF; }
.new-footer .social-icons .fa-facebook-f { color: #1877F2; }
.new-footer .social-icons .fa-whatsapp { color: #25D366; }
.new-footer .social-icons .fa-youtube { color: #FF0000; }

/* Special gradient for Instagram */
.new-footer .social-icons .fa-instagram::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%,#d6249f 60%,#285aeb 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-footer .bottom-bar-left, .new-footer .bottom-bar-right {
    text-align: center;
}

.new-footer .footer-awards {
    display: flex;
    gap: 15px;
    justify-content: center;
    color: #6B7280;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.new-footer .bottom-bar-right {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.new-footer .bottom-bar-right a {
    color: #9CA3AF;
    text-decoration: none;
}
.new-footer .bottom-bar-right a:hover {
    color: #ffffff;
}

@media(min-width: 992px) {
    .new-footer .footer-column {
        margin-bottom: 0;
    }
    .new-footer .social-icons-wrapper {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .new-footer .footer-awards, .new-footer .bottom-bar-right {
        justify-content: flex-start;
        text-align: left;
    }
     .new-footer .bottom-bar-right {
        justify-content: flex-end;
        text-align: right;
    }
    
    
}

/* ========================================================= */
/* FINAL FIX FOR FOOTER SOCIAL ICON ALIGNMENT
/* ========================================================= */

/* This targets ONLY the social icon row and centers it vertically */
.social-icon-row .contact-item-new {
    align-items: center;
}
/* ========================================================= */
/* SCROLLING ANNOUNCEMENT BAR STYLES (STICKY BOTTOM)
/* ========================================================= */

.announcement-bar {
    position: fixed; /* This makes it sticky */
    bottom: 0;       /* This places it at the bottom */
    left: 0;
    width: 100%;
    z-index: 998;    /* Below floating buttons but above other content */
    background-color: #101827; 
    color: #f0f0f0;
    padding: 10px 0;
    overflow: hidden; 
    white-space: nowrap;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2); /* Shadow on top */
}

.announcement-ticker {
    display: inline-block;
    padding-left: 100%; 
    animation: ticker-scroll 30s linear infinite;
}

.announcement-item {
    display: inline-block;
    padding: 0 2rem; 
    font-size: 0.9rem;
    font-weight: 500;
}

.announcement-item .text-gold {
    color: #FBBF24;
    margin-right: 0.5rem;
}

.announcement-bar:hover .announcement-ticker {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* * =========================================================
* THE FIX: Add padding to the bottom of the body to make 
* space for the sticky announcement bar.
* =========================================================
*/
body {
    padding-bottom: 45px; /* Adjust this value to match your bar's height */
}


/* This moves your floating WhatsApp button UP to make space */
.floating-button {
    bottom: 4rem; /* Increased from 2.5rem */
}

/* ========================================================= */
/* STYLES FOR NEW CONTACT US CTA SECTION
/* ========================================================= */

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #e8B006, #cd8E06);
    color: #ffffff;
}

.cta-section .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .cta-paragraph {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.cta-section .btn-cta {
    background-color: #ffffff;
    color: #101827;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9999px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-section .btn-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------------
PART 3: CHATBOT CSS
-------------------------------------------------------------------------------
Instruction: Paste this code at the end of your `public/css/style.css` file.
-------------------------------------------------------------------------------
*/

#chatbot-container {
    position: fixed;
    /* FIX: Reduced desktop gap */
    bottom: 7.8rem; 
    right: 2rem;
    z-index: 1000;
}

#chatbot-bubble {
    /* Sizing matches WhatsApp button */
    width: 55px;
    height: 55px;
    font-size: 2rem;
    
    background: linear-gradient(135deg, var(--primary, #13007d), #6248ee);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#chatbot-bubble:hover {
    transform: scale(1.1);
}

#chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#chatbot-window.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#chat-header {
    background: linear-gradient(135deg, var(--primary, #13007d), #6248ee);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

#chat-header p {
    margin: 0;
    font-weight: 700;
}

#chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

#chat-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#chat-body p {
    margin: 0;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.5;
    word-wrap: break-word;
    min-width: 80px;  /* Keeps small messages looking good */
    text-align: left; /* Ensures text inside bubble is always aligned left */
}

.bot-message {
    display: flex;
    justify-content: flex-start;
    margin-right: 15%; /* Creates space on the right */
}
.bot-message p {
    background-color: #f1f3f5;
    color: #333;
    border-bottom-left-radius: 5px;
}
.bot-message a {
    color: var(--primary, #13007d);
    font-weight: bold;
}

.user-message {
    display: flex;
    justify-content: flex-end;
    margin-left: 15%; /* Creates space on the left */
}
.user-message p {
    background-color: var(--primary, #13007d);
    color: white;
    border-bottom-right-radius: 5px;
}

#chat-footer {
    padding: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#chat-input {
    flex-grow: 1;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 10px 15px;
    outline: none;
    transition: border-color 0.2s;
    font-size: 16px; /* Prevents iOS zoom on focus */
}
#chat-input:focus {
    border-color: var(--primary, #13007d);
}

#chat-send-btn {
    background-color: var(--primary, #13007d);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

#chat-send-btn:hover {
    background-color: #6248ee;
}

/* === MOBILE RESPONSIVE FIXES === */
@media (max-width: 768px) {
    /* Adjust position for all floating buttons */
    #chatbot-container {
        bottom: 7.5rem; /* New position with a nice gap */
        right: 2rem; /* FIX: Aligned with WhatsApp button */
    }
    #chatbot-bubble {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    /* Make the chat window almost full screen on mobile */
    #chatbot-window {
        position: fixed; /* Change to fixed for full screen overlay */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        bottom: auto;
        right: auto;
    }
}




/* ========================================================================= */
/* STYLES FOR HOMEPAGE CONTENT SECTIONS
/* ========================================================================= */

/* --- Redesigned "What are you looking for?" Section --- */
.services-section-v2 {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.service-card-v2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-card-v2 .card-image-wrapper {
    height: 250px;
    overflow: hidden;
}
.service-card-v2 .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card-v2 .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card-v2 .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-darkest, #2c2c2e);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card-v2 .card-description {
    font-size: 0.95rem;
    color: var(--grey, #868686);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.service-card-v2 .card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.service-card-v2 .price-info {
    text-align: left;
}
.service-card-v2 .price-info .price-bdt {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary, #13007d) 0%, #6248ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.service-card-v2 .price-info .price-usd {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #333);
}
.service-card-v2 .price-info .price-label {
    font-size: 0.8rem;
    color: var(--grey, #868686);
    display: block;
    margin-top: 2px;
}

/* --- "Why Choose Babylon?" Section --- */
.why-choose-babylon {
    padding: 50px 0;
    background: linear-gradient(to bottom right, #f0f5ff, #ffffff, #f7f9ff);
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.feature-text {
    font-size: 16px;
}
.feature-icon {
    font-size: 1.2rem;
}
@media (max-width: 991px) {
    .why-choose-babylon .video-wrapper {
        margin-bottom: 20px;
    }
    .feature-text {
        font-size: 14px;
    }
    .feature-icon {
        font-size: 1rem;
    }
}

/* --- "Contact Us Today" CTA Section --- */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #E8B006, #CD8E06);
    color: #ffffff;
}
.cta-section .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section .cta-paragraph {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}
.cta-section .btn-cta {
    background-color: #ffffff;
    color: #101827;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9999px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-section .btn-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}



/* ===================================
   SISTER CONCERNS SECTION STYLES
   =================================== */

.sister-concerns-image-section {
    position: relative;
    overflow: hidden;
}

.sister-concerns-image-wrapper {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sister-concerns-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.sister-concerns-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sister-concerns-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 2px solid #f1f3f4;
    margin-top: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Award badge styling (optional) */
.awards-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.award-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Animation on scroll (optional) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sister-concerns-image-wrapper {
    animation: fadeInUp 0.8s ease-out;
}



/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet and below */
@media (max-width: 768px) {
    .sister-concerns-image-section {
        padding: 60px 0;
    }
    
    .sister-concerns-image-wrapper {
        padding: 15px;
    }
    
    .sister-concerns-cta {
        padding: 30px 20px;
        margin-top: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .sister-concerns-image-wrapper {
        padding: 10px;
        margin: 0 -15px;
        border-radius: 15px;
    }
    
    .sister-concerns-image {
        border-radius: 10px;
    }
    
    .sister-concerns-cta {
        margin: 20px -15px 0;
        border-radius: 15px;
    }
    
    .awards-highlight {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .award-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* ========================================================================= */
/* UPDATED HERO HEADER VISIBILITY FIX - WITH PRICING PAGE GRADIENT
/* ========================================================================= */

/* ONLY target OTHER pages, NOT the homepage - using the same gradient as pricing page */
.hero:not(#hero-section)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using your manually collected gradient colors */
    background: linear-gradient(135deg, #0E0C2A, #393B82);
    z-index: 1;
    pointer-events: none;
}

/* Ensure content appears above overlay on OTHER pages */
.hero:not(#hero-section) .container,
.hero:not(#hero-section) .hero-content {
    position: relative;
    z-index: 2;
}

/* Make hero text white and readable on OTHER pages */
.hero:not(#hero-section) h1,
.hero:not(#hero-section) .hero-title,
.hero:not(#hero-section) .title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero:not(#hero-section) p,
.hero:not(#hero-section) .hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Prevent overlay on pages that already have good dark backgrounds */
.hero.has-custom-overlay::before {
    display: none !important;
}

/* Make sure header is always above overlays */
.main-header {
    z-index: 1000 !important;
}

/* ========================================================================= */
/* FINAL PERFECT FIX - MATCH APARTMENT PAGE EXACTLY
/* ========================================================================= */

/* 1. TARGET: Pages with simple div containing white text in search_content */
body:not(.homepage) div:has(> h1.text-white.text-center.title) {
    /* CORRECT gradient: #16153C to #313272 */
    background: linear-gradient(135deg, #16153C, #313272) !important;
    
    /* MATCH apartment page dimensions exactly */
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Proper header spacing - matches apartment page */
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    
    /* ADD margin bottom to push content down */
    margin-bottom: 40px !important;
    
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
}

/* 2. Alternative selectors for other problematic structures */
body:not(.homepage) [id*="search_content"] > div:only-child:has(h1.text-white):not(.hero-content),
body:not(.homepage) section > div:only-child:has(h1.text-white):not(.hero-content) {
    background: linear-gradient(135deg, #16153C, #313272) !important;
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 40px !important; /* Space for content below */
    background-size: cover !important;
    background-position: center !important;
}

/* 3. ENSURE all text is beautifully styled */
body:not(.homepage) div:has(> h1.text-white.text-center.title) *,
body:not(.homepage) [id*="search_content"] > div:only-child:has(h1.text-white) * {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    position: relative !important;
    z-index: 2 !important;
}

/* 4. EXACT font sizes to match apartment page */
body:not(.homepage) h1.text-white.text-center.title {
    margin: 0 !important;
    padding: 20px !important;
    font-size: 2.5rem !important; /* Matches apartment page display-4 */
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

/* 5. Style subtitle if present (like apartment page) */
body:not(.homepage) div:has(> h1.text-white.text-center.title) p.lead,
body:not(.homepage) div:has(> h1.text-white.text-center.title) .lead {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
    opacity: 0.9 !important;
    margin-bottom: 0 !important;
}

/* 6. ADD proper spacing to content AFTER hero section */
body:not(.homepage) div:has(> h1.text-white.text-center.title) + section,
body:not(.homepage) div:has(> h1.text-white.text-center.title) + .services,
body:not(.homepage) [id*="search_content"] + section,
body:not(.homepage) [id*="search_content"] + .services {
    padding-top: 60px !important; /* Extra space from hero */
}

/* 7. EXCLUDE your perfect pages (don't touch them) */
.hero.has-custom-overlay::before,
.hero:has(.hero-carousel),
.hero-section:has(.hero-carousel),
#hero-section,
.hero-section#hero-section {
    /* These stay exactly as they are */
}

/* 8. MOBILE OPTIMIZATION - MATCH APARTMENT PAGE RESPONSIVENESS */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    body:not(.homepage) div:has(> h1.text-white.text-center.title) {
        min-height: 350px !important;
        margin-bottom: 35px !important;
    }
    
    body:not(.homepage) h1.text-white.text-center.title {
        font-size: 2.25rem !important; /* 36px */
        padding: 18px !important;
    }
}

/* Tablets */
@media (max-width: 992px) {
    body:not(.homepage) div:has(> h1.text-center.title) {
        min-height: 300px !important;
        margin-bottom: 30px !important;
    }
    
    body:not(.homepage) h1.text-white.text-center.title {
        font-size: 2rem !important; /* 32px */
        padding: 15px !important;
    }
    
    /* Adjust content spacing on tablets */
    body:not(.homepage) div:has(> h1.text-white.text-center.title) + section,
    body:not(.homepage) div:has(> h1.text-white.text-center.title) + .services {
        padding-top: 50px !important;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    body:not(.homepage) div:has(> h1.text-white.text-center.title) {
        min-height: 300px !important;
        margin-bottom: 25px !important;
    }
    
    body:not(.homepage) h1.text-white.text-center.title {
        font-size: 1.75rem !important; /* 28px */
        padding: 12px !important;
    }
    
    body:not(.homepage) div:has(> h1.text-white.text-center.title) p.lead,
    body:not(.homepage) div:has(> h1.text-white.text-center.title) .lead {
        font-size: 1.1rem !important;
    }
    
    /* Mobile content spacing */
    body:not(.homepage) div:has(> h1.text-white.text-center.title) + section,
    body:not(.homepage) div:has(> h1.text-white.text-center.title) + .services {
        padding-top: 40px !important;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    body:not(.homepage) div:has(> h1.text-white.text-center.title) {
        min-height: 200px !important;
        margin-bottom: 20px !important;
    }
    
    body:not(.homepage) h1.text-white.text-center.title {
        font-size: 1.5rem !important; /* 24px */
        padding: 10px !important;
        line-height: 1.3 !important;
    }
    
    body:not(.homepage) div:has(> h1.text-white.text-center.title) p.lead,
    body:not(.homepage) div:has(> h1.text-white.text-center.title) .lead {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Small mobile content spacing */
    body:not(.homepage) div:has(> h1.text-white.text-center.title) + section,
    body:not(.homepage) div:has(> h1.text-white.text-center.title) + .services {
        padding-top: 30px !important;
    }
}

/* 9. ENSURE header is always visible */
.main-header {
    z-index: 9999 !important;
}

/* 10. ADDITIONAL spacing for better content flow */
body:not(.homepage) .services {
    margin-top: 0 !important;
}

/* 11. Match apartment page container spacing */
body:not(.homepage) .container {
    padding-top: 0 !important;
}


{{-- ========================================================================= 
     CAR RENTAL PAGE - HERO SECTION STYLES
     Custom CSS for left-aligned hero with car background image
     ========================================================================= --}}
.hero-section.car-rental-hero .awards-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(21, 18, 29, 0.6);
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.hero-section.car-rental-hero .awards-badge span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    font-size: 12px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.hero-section.car-rental-hero .awards-badge i {
    color: #D09106;
    font-size: 14px;
}

/* Desktop optimizations */
@media (min-width: 992px) {
    .hero-section.car-rental-hero {
        min-height: 700px !important;
        align-items: flex-end !important;
        padding-bottom: 120px !important;
    }
    
    .hero-section.car-rental-hero .hero-headline {
        font-size: 3.4rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section.car-rental-hero .hero-subheadline {
        font-size: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Tablet optimizations */
@media (max-width: 991px) and (min-width: 769px) {
    .hero-section.car-rental-hero {
        min-height: 600px !important;
        align-items: center !important;
        padding-bottom: 60px !important;
    }
    
    .hero-section.car-rental-hero .hero-headline {
        font-size: 2.8rem !important;
    }
    
    .hero-section.car-rental-hero .awards-badge span {
        font-size: 11px !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-section.car-rental-hero {
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%), url('{{ asset('images/rent-a-car-background.png') }}') !important;
        background-size: cover !important;
        background-position: right center !important;
        min-height: 550px !important;
        text-align: left !important;
        align-items: center !important;
        padding-bottom: 30px !important;
        padding-top: 30px !important;
    }
    
    .hero-section.car-rental-hero .container {
        transform: translateY(20px);
    }
    
    .hero-section.car-rental-hero .hero-headline {
        font-size: 2.3rem !important;
        text-align: left !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section.car-rental-hero .hero-subheadline {
        text-align: left !important;
        margin: 0 0 1.2rem 0 !important;
        font-size: 1.1rem !important;
        max-width: 95% !important;
    }
    
    .hero-section.car-rental-hero .hero-cta-section {
        text-align: left !important;
    }
    
    .hero-section.car-rental-hero .hero-cta-price {
        font-size: 1.2rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .hero-section.car-rental-hero .hero-buttons {
        justify-content: flex-start !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
    }
    
    .hero-section.car-rental-hero .awards-badge {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
        padding: 6px 10px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section.car-rental-hero .awards-badge span {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
    
    .hero-section.car-rental-hero .awards-badge i {
        font-size: 12px !important;
    }
    
    .hero-section.car-rental-hero .btn-hero-primary,
    .hero-section.car-rental-hero .btn-hero-secondary {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

/* Small mobile optimizations */
@media (max-width: 576px) {
    .hero-section.car-rental-hero {
        min-height: 500px !important;
        padding-bottom: 50px !important;
        background-position: 70% center !important;
    }
    
    .hero-section.car-rental-hero .hero-headline {
        font-size: 1.9rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-section.car-rental-hero .hero-subheadline {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-section.car-rental-hero .hero-cta-price {
        font-size: 1.1rem !important;
    }
    
    .hero-section.car-rental-hero .awards-badge {
        margin-bottom: 1rem !important;
    }
    
    .hero-section.car-rental-hero .awards-badge span {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }
}
