/* ===========================
   Global Reset
=========================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    background: #fff;
    overflow-x: hidden;
}

/* ===========================
   Typography
=========================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playpen Sans", cursive;
    color: #222;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* ===========================
   Links
=========================== */

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff6b00;
}

/* ===========================
   Images
=========================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Lists
=========================== */

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header & Navigation */
.site-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 18px rgba(12, 38, 76, 0.08);
}
.header-top__inner {
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 54px);
}
.site-brand {
    flex: 0 0 clamp(220px, 20vw, 290px);
}
.site-brand img {
    width: 100%;
    height: auto;
}
.tourism-badge {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #0c264c;
    white-space: nowrap;
}
.tourism-badge__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    color: #07a96b;
    background: #eefaf6;
}
.tourism-badge__icon svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linejoin: round;
}
.tourism-badge small,
.tourism-badge strong {
    display: block;
    line-height: 1.3;
}
.tourism-badge small {
    font-size: 12px;
    color: #68758a;
}
.tourism-badge strong {
    font-size: 15px;
}
.header-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 48px);
}
.header-contact__group {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1781fe;
    font-size: 15px;
    font-weight: 700;
}
.contact-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #1781fe;
    box-shadow: 0 7px 18px rgba(23, 129, 254, 0.2);
}
.contact-icon svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-lines {
    display: grid;
    gap: 3px;
}
.header-contact a:hover {
    color: #f25a29;
}
.login-btn {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: #1781fe;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(23, 129, 254, 0.2);
}
.login-btn:hover {
    color: #fff;
    background: #0c69d8;
    transform: translateY(-2px);
}
.login-btn svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}
.main-nav {
    background: #f25a29;
}
.main-menu {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4px;
}
.main-menu li {
    display: flex;
}
.main-menu a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}
.main-menu a::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 13px;
    left: 10px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.main-menu a:hover,
.main-menu a.active {
    color: #fff;
}
.main-menu a:hover::after,
.main-menu a.active::after {
    transform: scaleX(1);
}
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    border-radius: 10px;
    background: #f25a29;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: #fff;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

section.banner-area {
    position: relative;
    padding: 100px 0;
    background-image: url(../assets/images/banner-img.png);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

section.banner-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.banner-content h1 {
    color: #fff;
    line-height: 70px;
    font-weight: 700;
    font-size: 49px;
}

span.text-color {
    font-style: italic;
    color: #ffb300;
}

.banner-content p {
    color: #ffff;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.3px;
}

.primary-btn1 {
    background-color: #1781fe;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.48px;
    line-height: 1;
    padding: 16px 20px;
    border-radius: 10px;
    position: relative;
    align-items: center;
    display: inline-flex;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.primary-btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 102% 102%;
    border-radius: inherit;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 0;
    z-index: -1;
}

.primary-btn1::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(110%);
    background-color: #f25a29;
    overflow: hidden;
    transition:
        opacity 0.5s,
        transform 0.5s;
    z-index: -1;
}

.primary-btn1 > span {
    transition:
        opacity 0.3s,
        transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn1 > span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translate(0, 100%);
    transition:
        opacity 0.3s,
        transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}

.primary-btn1 > span svg {
    fill: #fff;
    transition: 0.5s;
}

.primary-btn1:hover {
    color: #fff;
}

.primary-btn1:hover::after {
    transform: translate(0);
    border-radius: 0;
}

.primary-btn1:hover > span {
    transform: translateY(-150%);
    opacity: 0;
}

.primary-btn1:hover > span:nth-child(2) {
    opacity: 1;
    transform: translate(0%, -50%);
}

a.theme-btn-2 {
    margin-left: 40px;
    background-color: #ffb300;
    color: #000;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.48px;
    line-height: 1;
    border-radius: 10px;
}

/* About & contact pages */
.section-space {
    padding: 108px 0;
}
.section-tag {
    margin: 0 0 13px;
    color: #1781fe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
}
.section-tag--orange {
    color: #f25a29;
}
.inner-hero {
    position: relative;
    isolation: isolate;
    min-height: 365px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #102d52;
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 26, 55, 0.91) 0%,
            rgba(7, 26, 55, 0.72) 47%,
            rgba(7, 26, 55, 0.3) 100%
        ),
        url("../assets/images/banner-img.png");
    background-size: cover;
    background-position: center 54%;
}
.inner-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -8%;
    bottom: -170px;
    width: 57%;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50% 50% 0 0;
    transform: rotate(-12deg);
}
.inner-hero--contact {
    background-position: center 65%;
}
.inner-hero__content {
    padding: 57px 0;
}
.inner-hero .section-tag {
    color: #ffc04a;
}
.inner-hero h1 {
    max-width: 630px;
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}
.inner-hero h1 span {
    color: #ffc04a;
    font-style: italic;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
}
.breadcrumb a {
    color: #fff;
}
.breadcrumb a:hover {
    color: #ffc04a;
}
.breadcrumb i {
    color: #ffc04a;
    font-size: 22px;
    font-style: normal;
}
.about-photo-wrap {
    position: relative;
    padding: 0 31px 31px 0;
}
.about-photo-wrap::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 67%;
    height: 68%;
    background: #e6f1fe;
    border-radius: 20px;
}
.about-photo-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 445px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 38px rgba(12, 38, 76, 0.14);
}
.experience-badge {
    position: absolute;
    z-index: 2;
    bottom: 7px;
    left: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    color: #fff;
    background: #1781fe;
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(23, 129, 254, 0.28);
}
.experience-badge strong {
    font:
        700 35px/1 "Playpen Sans",
        cursive;
}
.experience-badge sup {
    font-size: 17px;
}
.experience-badge span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}
.content-block h2,
.section-heading h2,
.travel-cta h2,
.location-strip h2 {
    margin-bottom: 20px;
    font-size: clamp(31px, 3.2vw, 44px);
    line-height: 1.25;
    letter-spacing: -0.035em;
}
.content-block h2 em,
.section-heading h2 em,
.travel-cta h2 em,
.location-strip h2 em {
    color: #f25a29;
    font-style: italic;
}
.content-block > p {
    max-width: 570px;
    font-size: 15px;
    line-height: 1.9;
}
.feature-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
    margin: 27px 0 31px;
    color: #223c59;
    font-size: 14px;
    font-weight: 700;
}
.feature-checks b {
    display: inline-grid;
    width: 19px;
    height: 19px;
    margin-right: 6px;
    place-items: center;
    color: #1781fe;
    background: #e7f2ff;
    border-radius: 50%;
}
.inner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 21px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: #1781fe;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 9px 19px rgba(23, 129, 254, 0.22);
    cursor: pointer;
}
.inner-btn:hover {
    color: #fff;
    background: #f25a29;
    transform: translateY(-2px);
}
.inner-btn span {
    font-size: 19px;
    line-height: 0.8;
}
.inner-btn--light {
    color: #143359;
    background: #fff;
    box-shadow: none;
}
.inner-btn--light:hover {
    color: #fff;
    background: #f25a29;
}
.values-section {
    padding: 100px 0 108px;
    background: #f6faff;
}
.section-heading {
    max-width: 655px;
    margin: 0 auto 42px;
}
.section-heading > p:last-child {
    margin: 0;
    font-size: 15px;
}
.section-heading h2 {
    margin-bottom: 12px;
}
.value-card {
    height: 100%;
    padding: 32px 29px;
    background: #fff;
    border: 1px solid #e6eef8;
    border-radius: 15px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 32px rgba(12, 38, 76, 0.1);
}
.value-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    place-items: center;
    color: #1781fe;
    background: #e8f3ff;
    border-radius: 14px;
    font-size: 27px;
}
.value-card:nth-child(1) .value-icon {
    color: #f25a29;
    background: #fff0ea;
}
.value-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}
.value-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}
.travel-cta {
    padding: 69px 0;
    color: #fff;
    background: #0c315b;
}
.travel-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.travel-cta .section-tag {
    color: #ffc04a;
}
.travel-cta h2 {
    margin: 0;
    color: #fff;
}
.travel-cta h2 em {
    color: #ffc04a;
}
.contact-cards {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    color: #1d3653;
}
.contact-card:hover {
    color: #1d3653;
    border-color: #a9cefa;
    box-shadow: 0 8px 19px rgba(12, 38, 76, 0.06);
}
.contact-card > span {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    color: #1781fe;
    background: #e8f3ff;
    border-radius: 11px;
    font-size: 20px;
}
.contact-card small,
.contact-card strong,
.contact-card em {
    display: block;
}
.contact-card small {
    color: #8b99aa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.contact-card strong {
    font-size: 14px;
}
.contact-card em {
    color: #76869a;
    font-size: 11px;
    font-style: normal;
}
.contact-form-wrap {
    padding: clamp(25px, 4vw, 43px);
    background: #f6faff;
    border-radius: 18px;
}
.contact-form-wrap h3 {
    margin-bottom: 25px;
    font-size: 27px;
}
.contact-form label {
    display: block;
    margin-bottom: 7px;
    color: #29415e;
    font-size: 12px;
    font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    outline: none;
    color: #29415e;
    background: #fff;
    font:
        13px "Inter",
        sans-serif;
    transition:
        border 0.2s,
        box-shadow 0.2s;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1781fe;
    box-shadow: 0 0 0 3px rgba(23, 129, 254, 0.12);
}
.form-note {
    margin-left: 13px;
    color: #8795a6;
    font-size: 10px;
}
.location-strip {
    padding: 53px 0;
    background: #123a66;
    color: #fff;
}
.location-strip .container {
    display: grid;
    grid-template-columns: 100px 1.25fr 1fr auto;
    align-items: center;
    gap: 30px;
}
.location-strip .section-tag {
    color: #ffc04a;
}
.location-strip h2 {
    margin: 0;
    color: #fff;
    font-size: 29px;
}
.location-strip h2 em {
    color: #ffc04a;
}
.location-strip > .container > p {
    margin: 0;
    color: #cbdae9;
    font-size: 13px;
    line-height: 1.75;
}
.location-strip a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.location-strip a span {
    margin-left: 7px;
    font-size: 18px;
}
.location-strip__map {
    position: relative;
    width: 83px;
    height: 83px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffc04a;
    font-size: 20px;
}
.map-ring {
    position: absolute;
    width: 55px;
    height: 55px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}
@media (max-width: 991.98px) {
    .section-space {
        padding: 75px 0;
    }
    .inner-hero {
        min-height: 315px;
    }
    .about-photo-wrap img {
        min-height: 360px;
    }
    .location-strip .container {
        grid-template-columns: 85px 1fr 1fr;
    }
    .location-strip a {
        grid-column: 2 / -1;
    }
}
@media (max-width: 767.98px) {
    .section-space {
        padding: 58px 0;
    }
    .inner-hero {
        min-height: 280px;
    }
    .inner-hero__content {
        padding: 42px 0;
    }
    .inner-hero h1 {
        font-size: 38px;
    }
    .about-photo-wrap {
        padding-right: 18px;
        padding-bottom: 18px;
    }
    .about-photo-wrap img {
        min-height: 300px;
    }
    .experience-badge {
        bottom: 0;
        left: 13px;
        padding: 12px;
    }
    .experience-badge strong {
        font-size: 28px;
    }
    .feature-checks {
        grid-template-columns: 1fr;
    }
    .values-section {
        padding: 58px 0;
    }
    .travel-cta {
        padding: 48px 0;
    }
    .travel-cta .container {
        display: block;
    }
    .travel-cta h2 {
        margin-bottom: 24px;
    }
    .location-strip {
        padding: 41px 0;
    }
    .location-strip .container {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }
    .location-strip__map {
        width: 63px;
        height: 63px;
    }
    .location-strip > .container > p,
    .location-strip a {
        grid-column: 2;
    }
    .location-strip a {
        margin-top: -10px;
    }
    .form-note {
        display: block;
        margin: 12px 0 0;
    }
}

/* Public blog pages */
.blog-hero {
    background-position: center 44%;
}
.blog-list-section {
    background: #fff;
}
.public-blog-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    background: #fff;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.public-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(12, 38, 76, 0.11);
}
.public-blog-card > a > img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}
.public-blog-placeholder {
    height: 215px;
    display: grid;
    place-content: center;
    color: #eff09c;
    background: linear-gradient(140deg, #1b584b, #0d334c);
    font: 700 33px "Playpen Sans";
    text-align: center;
}
.public-blog-placeholder span {
    display: block;
    margin-top: 6px;
    color: #c7ded4;
    font: 700 9px "Inter";
    letter-spacing: 0.18em;
}
.public-blog-card__body {
    padding: 23px;
}
.public-blog-card__body > p {
    margin: 0 0 9px;
    color: #1781fe;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.public-blog-card__body > p i {
    margin: 0 5px;
    color: #b2c2d4;
    font-style: normal;
}
.public-blog-card h2 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.32;
}
.public-blog-card h2 a:hover {
    color: #1781fe;
}
.public-blog-card__body > div {
    min-height: 48px;
    color: #738398;
    font-size: 13px;
    line-height: 1.7;
}
.read-blog {
    display: inline-block;
    margin-top: 18px;
    color: #e95727;
    font-size: 13px;
    font-weight: 800;
}
.read-blog span {
    margin-left: 4px;
    font-size: 18px;
}
.no-public-blogs {
    padding: 48px 20px;
    text-align: center;
    background: #f6faff;
    border-radius: 14px;
}
.no-public-blogs span {
    color: #f25a29;
}
.no-public-blogs h2 {
    margin: 9px 0;
    font-size: 26px;
}
.no-public-blogs p {
    margin: 0;
    font-size: 14px;
}
.article-hero {
    padding: 76px 0 90px;
    color: #fff;
    background: #102f56;
}
.article-hero__content {
    max-width: 850px;
}
.article-hero .breadcrumb {
    margin-bottom: 34px;
}
.article-hero .section-tag {
    color: #ffc04a;
}
.article-hero h1 {
    margin: 0 0 19px;
    color: #fff;
    font-size: clamp(36px, 4.4vw, 56px);
    letter-spacing: -0.04em;
    line-height: 1.18;
}
.article-hero__content > p:last-child {
    max-width: 715px;
    margin: 0;
    color: #cfdaea;
    font-size: 16px;
    line-height: 1.8;
}
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 265px;
    gap: 55px;
    align-items: start;
}
.article-cover {
    width: 100%;
    max-height: 465px;
    margin-bottom: 36px;
    object-fit: cover;
    border-radius: 15px;
}
.article-copy {
    color: #4e6174;
    font-size: 16px;
    line-height: 1.95;
    white-space: normal;
}
.article-faq {
    margin-top: 52px;
    padding-top: 45px;
    border-top: 1px solid #e4eaf0;
}
.article-faq h2 {
    margin-bottom: 23px;
    font-size: 32px;
}
.article-faq h2 em {
    color: #f25a29;
    font-style: italic;
}
.article-faq details {
    margin-top: 11px;
    padding: 17px 19px;
    border: 1px solid #e0e8f0;
    border-radius: 9px;
}
.article-faq summary {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #294362;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}
.article-faq summary::-webkit-details-marker {
    display: none;
}
.article-faq summary span {
    color: #1781fe;
    font-size: 21px;
    line-height: 0.7;
}
.article-faq details[open] summary span {
    transform: rotate(45deg);
}
.article-faq details p {
    margin: 13px 0 0;
    font-size: 14px;
    line-height: 1.75;
}
.article-aside {
    position: sticky;
    top: 25px;
}
.article-aside > div {
    padding: 25px;
    border-radius: 13px;
    background: #f5f9fd;
}
.article-aside h3 {
    margin-bottom: 10px;
    font-size: 24px;
}
.article-aside p:not(.section-tag) {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.75;
}
.article-back {
    display: block;
    margin-top: 23px;
    color: #2c705f;
    font-size: 12px;
    font-weight: 800;
}
@media (max-width: 991.98px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .article-aside {
        position: static;
    }
    .article-aside > div {
        max-width: 500px;
    }
}
@media (max-width: 767.98px) {
    .public-blog-card > a > img,
    .public-blog-placeholder {
        height: 190px;
    }
    .article-hero {
        padding: 50px 0 58px;
    }
    .article-hero .breadcrumb {
        margin-bottom: 24px;
        flex-wrap: wrap;
    }
    .article-hero__content > p:last-child {
        font-size: 14px;
    }
    .article-cover {
        margin-bottom: 25px;
    }
    .article-copy {
        font-size: 15px;
    }
    .article-faq {
        margin-top: 38px;
        padding-top: 34px;
    }
}
.tourism-badge__icon {
    color: #f25a29;
    background: #fff1ea;
}
.public-blog-placeholder {
    background: linear-gradient(140deg, #f25a29, #153354);
}
.public-blog-placeholder span {
    color: #ffe0b8;
}
.site-footer {
    position: relative;
    overflow: hidden;
    color: #c9d5e1;
    background: #112842;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(8, 21, 38, 0.96), rgba(20, 48, 78, 0.92)),
        url("images/banner-img.png") center/cover;
    opacity: 0.98;
}
.footer-main,
.footer-bottom {
    position: relative;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding: 75px 0 58px;
}
.footer-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(5px);
    background: rgba(242, 90, 41, 0.12);
}
.footer-glow--one {
    top: -220px;
    left: -120px;
}
.footer-glow--two {
    right: -170px;
    bottom: -270px;
    background: rgba(255, 149, 70, 0.1);
}
.footer-logo {
    display: block;
    width: 260px;
    margin-bottom: 21px;
}
.footer-logo img {
    width: 100%;
}
.footer-about > p {
    max-width: 380px;
    margin-bottom: 23px;
    color: #b9c9d9;
    font-size: 14px;
    line-height: 1.85;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.footer-socials a:hover {
    color: #fff;
    border-color: #f25a29;
    background: #f25a29;
    transform: translateY(-3px);
}
.footer-socials svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-socials a:first-child svg {
    fill: currentColor;
    stroke: none;
}
.footer-col h3 {
    margin: 4px 0 22px;
    color: #fff;
    font-size: 19px;
}
.footer-col > a {
    display: block;
    margin: 0 0 12px;
    color: #c5d3e0;
    font-size: 14px;
}
.footer-col > a:hover {
    padding-left: 4px;
    color: #ff9a5d;
}
.footer-contact p {
    margin: 0 0 15px;
    color: #c5d3e0;
    font-size: 14px;
    line-height: 1.75;
}
.footer-contact p span,
.footer-contact > a span {
    display: inline-block;
    width: 22px;
    color: #ff9a5d;
}
.footer-contact > a {
    margin-bottom: 10px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 19px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-bottom p {
    margin: 0;
    color: #91a7bd;
    font-size: 12px;
}
.footer-bottom div {
    display: flex;
    gap: 23px;
}
.footer-bottom a {
    color: #aebed0;
    font-size: 12px;
}
.footer-bottom a:hover {
    color: #ff9a5d;
}
.quick-contact {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 24px;
    display: grid;
    gap: 10px;
}
.quick-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 52px;
    height: 52px;
    padding: 0 15px;
    border-radius: 26px;
    color: #fff;
    box-shadow: 0 10px 22px rgba(10, 27, 49, 0.28);
    transition: 0.25s;
}
.quick-contact a:hover {
    color: #fff;
    transform: translateY(-3px);
}
.quick-contact svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.quick-contact span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    transition: max-width 0.3s;
}
.quick-contact a:hover span {
    max-width: 100px;
}
.quick-contact__whatsapp {
    background: #25d366;
}
.quick-contact__call {
    background: #f25a29;
}
.quick-contact__call svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 35px;
    }
    .footer-contact {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        column-gap: 20px;
    }
    .footer-contact h3 {
        grid-column: 1/-1;
        margin-bottom: 5px;
    }
}
@media (max-width: 767.98px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 53px 0 35px;
        gap: 32px 22px;
    }
    .footer-about {
        grid-column: 1/-1;
    }
    .footer-logo {
        width: 225px;
    }
    .footer-contact {
        display: block;
        grid-column: 1/-1;
    }
    .footer-contact h3 {
        margin-bottom: 18px;
    }
    .footer-bottom {
        display: block;
        padding: 17px 0 85px;
    }
    .footer-bottom div {
        margin-top: 9px;
        gap: 16px;
    }
    .quick-contact {
        right: 14px;
        bottom: 17px;
        display: flex;
    }
    .quick-contact a {
        width: 50px;
        padding: 0;
        justify-content: center;
    }
    .quick-contact a:hover span {
        max-width: 0;
    }
}
@media (max-width: 420px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-col {
        padding-top: 2px;
    }
    .footer-bottom {
        padding-bottom: 81px;
    }
}

.content-block p a {
    color: #f25a29;
}
