/*
Theme Name: CallGirls
Author: VXD
Description: Custom WordPress theme.
Version: 1.0
Text Domain: callgirls
*/

/* GLOBAL */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* HEADER */

.top-bar {
    line-height: 2em;
    padding: 5px 0 6px;
    background: #f9c349;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 17px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
}

.top-bar a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.top-bar a:hover {
    color: #fff;
}

.main-header {
    background: #fff;
    height: 100px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 260px;
    height: auto;
    display: block;
}

/* HEADER MENU */

.main-navigation {
    margin-left: auto;
}

#mainMenu {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    list-style: none;
    position: relative;
}

.navbar-nav > li > a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

.navbar-nav > li:hover > a {
    color: #000;
    border-bottom-color: #f9c349;
}

/* ACTIVE MENU ITEM */
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li.current_page_item > a,
.navbar-nav > li.current-menu-parent > a,
.navbar-nav > li.current-menu-ancestor > a,
.navbar-nav > li.current-post-ancestor > a,
.navbar-nav > li.current-category-ancestor > a {
    color: #000;
    border-bottom: 3px solid #f9c349;
}

/* ACTIVE DROPDOWN ITEM */
.navbar-nav .sub-menu li.current-menu-item > a,
.navbar-nav .sub-menu li.current_page_item > a,
.navbar-nav .sub-menu li.current-post-ancestor > a,
.navbar-nav .sub-menu li.current-category-ancestor > a {
    background: #f9c349;
    color: #000;
}

.navbar-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    z-index: 99999;
}

.navbar-nav li:hover > .sub-menu {
    display: block;
}

.navbar-nav .sub-menu li a {
    display: block;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    padding: 13px 28px;
    white-space: nowrap;
    background: #f4f4f4;
}

.navbar-nav .sub-menu li a:hover {
    background: #f9c349;
    color: #000;
}

.navbar-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.navbar-nav .menu-item-has-children > a::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 13px;
}

.navbar-nav .sub-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav .sub-menu .menu-item-has-children > a::after {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    margin-left: 15px;
}

.mobile-menu-toggle {
    display: none;
}

@media (min-width: 768px) and (max-width: 1820px) {
    .navbar-nav .sub-menu .sub-menu {
        left: auto;
        right: 100%;
    }
}

/* HOMEPAGE */

.hero-section {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    background: #f6bd3c;
    color: #000;
    padding: 14px 45px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
}

.hero-btn:hover {
    background: #e6aa25;
    color: #000;
}

.sub-heading-section {
    padding: 35px 0 30px;
    text-align: center;
    background: #fff;
}

.sub-heading-section h2,
.home-content-section > .container > h2 {
    display: inline-block;
    position: relative;
    margin: 0;
    padding-bottom: 20px;
    color: #000;
    font-size: 38px;
    font-weight: 400;
    text-align: center;
}

.sub-heading-section h2::after,
.home-content-section > .container > h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 170px;
    height: 2px;
    background: #f9c349;
    transform: translateX(-50%);
}

.call-girls-section {
    padding: 20px 0 50px;
    background: #fff;
}

.call-girl-card {
    display: block;
    text-decoration: none;
}

.call-girl-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.call-girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.call-girl-title {
    background: #f9c349;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    padding: 16px 10px;
}

.call-girl-card:hover .call-girl-title {
    background: #ffbf32;
}

.home-content-section {
    padding: 40px 0 40px;
    background: #fff;
    text-align: center;
}

.home-content-section > .container > h2 {
    margin-bottom: 45px;
    font-size: 36px;
}

.home-content-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-size: 19px;
    line-height: 1.7;
}

.home-content-text h2,
.home-content-text h3 {
    font-size: 28px;
    font-weight: 900;
    margin: 45px 0 30px;
    line-height: 1.4;
}

.home-content-text p {
    margin-bottom: 24px;
}

.home-content-text strong {
    font-weight: 900;
}

.home-content-text a,
.home-content-text a:hover {
    color: #000;
    text-decoration: none;
}

/* SINGLE CALL GIRL PAGE */

.single-callgirl {
    width: 100%;
    max-width: 100%;
    background: #fff;
    font-size: 14px;
    padding-bottom: 40px;
}

.single-callgirl-title {
    background: #f9c349;
    text-align: center;
    padding: 10px;
    margin-bottom: 8px;
}

.single-callgirl-title h1 {
    margin: 0;
    color: #000;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
}

.single-callgirl-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
}

.single-left,
.single-right {
    min-width: 0;
}

.yellow-title {
    background: #f9c349;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    padding: 7px 10px;
    margin: 10px 0;
    line-height: 1.2;
}

.single-main-image {
    border: 3px double #f9c349;
    text-align: center;
    padding: 0;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-main-image img {
    max-width: 100%;
    max-height: 760px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* GALLERY */

.callgirl-masonry-gallery {
    border: 3px double #f9c349;
    padding: 6px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.callgirl-masonry-gallery a {
    display: block;
    height: 210px;
    flex: 1 1 auto;
    min-width: 140px;
    overflow: hidden;
}

.callgirl-masonry-gallery a.last-row-item {
    flex: 0 0 auto;
}

.callgirl-masonry-gallery a.last-row-item img {
    width: auto;
}

.callgirl-masonry-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.glightbox-container .gslide-image img {
    max-height: 90vh;
}

/* VIDEOS */

.video-stories-section {
    padding: 15px 10px;
}

.video-stories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.video-story-item {
    height: 620px;
    flex: 1 1 auto;
    min-width: 240px;
    max-width: 330px;
    border: 5px double #999;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.video-story-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOXES */

.single-box {
    border: 3px double #f9c349;
    padding: 14px;
    margin-bottom: 12px;
    text-align: center;
    background: #fff;
}

.single-info-top h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
}

.single-info-list {
    text-align: center;
}

.single-info-list p {
    margin: 0 0 10px;
    line-height: 1.45;
    font-size: 18px;
}

.single-info-list strong {
    font-weight: 900;
}

.single-description {
    line-height: 1.7;
    font-size: 18px;
}

.single-description p {
    margin-bottom: 14px;
}

.single-description a {
    color: #f9c349;
    text-decoration: none;
    font-weight: 700;
}

.single-rates table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.single-rates table td,
.single-rates table th {
    border: 1px double #ddd;
    padding: 12px;
    font-size: 16px;
}

.single-rates p {
    margin: 10px 0;
    font-size: 15px;
}

.single-services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 15px 10px 50px;
    width: 100%;
    max-width: 100%;
}

.single-services-layout.single-services-only .single-service-col {
    grid-column: 2;
}

.single-service-col {
    min-width: 0;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.5;
}

.services-list li::before {
    content: "✔";
    color: #f9c349;
    font-weight: 900;
    margin-right: 7px;
}

/* FOOTER */

.footer-extra-section {
    padding: 30px 0 80px;
    background: #fff;
}

.footer-contact-box {
    max-width: 500px;
    margin: 0 auto 8px;
    border: 3px double #f9c349;
    background: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom:50px;
}

.footer-contact-box h3 {
    background: #f9c349;
    margin: 0 0 18px;
    padding: 5px;
    font-size: 30px;
    font-weight: 900;
}

.footer-phone {
    margin: 0;
}

.footer-phone a {
    color: #000;
    font-size: 28px;
    text-decoration: none;
}

.footer-phone-text {
    margin: 0;
    color: #000;
    font-size: 21px;
    font-weight: 900;
}

.footer-phone-divider {
    width: 135px;
    height: 3px;
    background: #f9c349;
    margin: 20px auto;
}

.footer-center-banner {
    text-align: center;
    margin-bottom: 18px;
}

.footer-center-banner img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/*.footer-side-banners {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    gap: 30px;*/
/*}*/

/*.footer-side-banner img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/

.footer-side-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.footer-side-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.site-primary-footer-wrap {
    background: linear-gradient(180deg, #e2d6d6 0%, #ffb102 100%);
    border-top: 2px solid #000;
    padding: 28px 0;
    text-align: center;
}

.site-footer-inner p {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .main-header {
        height: auto;
        padding: 20px 0;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .logo img {
        width: 230px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .sub-heading-section h2 {
        font-size: 30px;
    }

    .call-girl-image {
        height: 360px;
    }

    .single-callgirl-layout,
    .single-services-layout {
        grid-template-columns: 1fr;
    }

    .single-main-image {
        min-height: auto;
    }

    .single-main-image img {
        width: 100%;
        max-height: none;
    }

    .single-info-top h3 {
        font-size: 30px;
    }

    .single-callgirl-title h1 {
        font-size: 34px;
    }

    .yellow-title {
        font-size: 24px;
    }

    .callgirl-masonry-gallery a {
        height: 190px;
        min-width: 130px;
    }

    .video-story-item {
        height: 500px;
        min-width: 180px;
        max-width: calc(50% - 3px);
    }

    /*.footer-side-banners {*/
    /*    flex-direction: column;*/
    /*}*/
    .footer-side-banners {
    grid-template-columns: 1fr;
}
    .single-services-layout.single-services-only .single-service-col {
    grid-column: 1;
}
}

@media (max-width: 767px) {
    .main-header {
        height: 120px;
        padding: 0;
        position: relative;
        z-index: 9999;
    }

    .header-inner {
        height: 100%;
        position: static;
    }

    .logo img {
        width: 260px;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: #f9c349;
        color: #fff;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-left: auto;
        z-index: 100001;
    }

    #mainMenu {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        width: 100%;
        background: #f4f4f4;
        z-index: 100000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    #mainMenu.mobile-open {
        max-height: 900px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #mainMenu .navbar-nav {
        display: block;
        width: 100%;
        background: #f4f4f4;
        margin: 0;
        padding: 0;
    }

    #mainMenu .navbar-nav li {
        width: 100%;
    }

    #mainMenu .navbar-nav > li > a {
        display: block;
        width: 100%;
        background: #f9c349;
        color: #fff;
        padding: 11px 28px;
        font-size: 18px;
        text-decoration: none;
        border: 0;
    }

    #mainMenu .navbar-nav .sub-menu {
        display: none;
        position: static;
        width: 100%;
        background: #f4f4f4;
        padding: 0;
        margin: 0;
    }

    #mainMenu .navbar-nav li.submenu-open > .sub-menu {
        display: block;
    }

    #mainMenu .navbar-nav .sub-menu li a {
        display: block;
        background: #f4f4f4;
        color: #000;
        padding: 11px 28px;
        font-size: 17px;
        text-decoration: none;
        border: 0;
    }

    #mainMenu .navbar-nav .sub-menu li a:hover {
        background: #f9c349;
        color: #000;
    }

    .single-callgirl-title h1 {
        font-size: 28px;
    }

    .yellow-title {
        font-size: 20px;
    }

    .single-info-top h3 {
        font-size: 24px;
    }

    .single-info-list p,
    .single-description,
    .services-list li {
        font-size: 16px;
    }

    .callgirl-masonry-gallery a {
        width: calc(50% - 3px);
        flex: 0 0 calc(50% - 3px);
        height: 210px;
        min-width: 0;
    }

    .video-story-item {
        width: calc(50% - 3px);
        flex: 0 0 calc(50% - 3px);
        height: 420px;
        min-width: 0;
        border-radius: 22px;
    }

    .footer-contact-box,
    .footer-center-banner img {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .top-bar {
        font-size: 14px;
    }

    .logo img {
        width: 170px;
    }

    .navbar-nav > li > a {
        font-size: 15px;
    }

    .hero-section {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .call-girl-image {
        height: 300px;
    }
}

@media (max-width: 420px) {
    .callgirl-masonry-gallery a {
        height: 180px;
    }

    .video-story-item {
        height: 340px;
    }
}


/* WORK FORM PAGE */

.work-form-page {
    background: #fff;
    padding-bottom: 60px;
}

.work-form-hero {
    background: #f9c349;
    padding: 10px;
    text-align: center;
}

.work-form-hero h1 {
    margin: 0;
    color: #000;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
}

.work-form-content {
    padding: 12px 10px 40px;
}

.work-form-text {
    max-width: 1200px;
    margin: 0 auto 12px;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
}

.work-form-text p {
    margin: 0 0 22px;
}

.work-form-box {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px double #f9c349;
    padding: 10px;
    background: #fff;
}

/* CONTACT FORM 7 */

.work-form-box .uacf7-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 24px;
    margin-bottom: 12px;
}

.work-form-box .uacf7-col-3 {
    min-width: 0;
}

.work-form-box strong {
    display: block;
    margin-bottom: 4px;
    color: #000;
    font-size: 16px;
    font-weight: 900;
}

.work-form-box input[type="text"],
.work-form-box input[type="email"],
.work-form-box input[type="tel"],
.work-form-box textarea {
    width: 100%;
    border: 0;
    padding: 13px 12px;
    font-size: 16px;
    box-sizing: border-box;
    background: #c9c9c9;
    color: #000;
}

.work-form-box textarea {
    min-height: 235px;
    resize: vertical;
    margin-bottom: 8px;
}

.work-form-box input::placeholder,
.work-form-box textarea::placeholder {
    color: #777;
}

.work-form-box .wpcf7-radio,
.work-form-box .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 4px;
    font-size: 16px;
}

.work-form-box .wpcf7-list-item {
    margin: 0;
}

.work-form-box .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.work-form-box input[type="radio"],
.work-form-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.work-form-box .full-custom {
    margin-top: 0;
}

.work-form-box input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 7px;
    background: #fff;
    margin-bottom: 8px;
    font-size: 12px;
}

.work-form-box .wpcf7-quiz-label {
    display: block;
    margin: 14px 0 5px;
    font-size: 16px;
    font-weight: 700;
}

.work-form-box input[name="math-quiz"] {
    width: 100%;
    border: 0;
    padding: 13px 12px;
    background: #c9c9c9;
    box-sizing: border-box;
}

.work-form-box input[type="submit"] {
    display: inline-block;
    background: #f9c349;
    color: #000;
    border: 0;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 0;
}

.work-form-box input[type="submit"]:hover {
    background: #e6aa25;
}

.work-form-box .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 4px;
}

.work-form-box .wpcf7-response-output {
    margin: 15px 0 0;
    font-size: 13px;
}

.work-form-box .wpcf7-form-control-wrap[data-name="math-quiz"] {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.work-form-box input[type="submit"] {
    display: block;
    margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .work-form-box {
        max-width: 100%;
    }

    .work-form-box .uacf7-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-form-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .work-form-box .uacf7-row {
        grid-template-columns: 1fr;
    }

    .work-form-hero h1 {
        font-size: 24px;
    }

    .work-form-text {
        font-size: 13px;
    }
}


/* ESCORT NEWS PAGE */

.escort-news-page {
    background: #fff;
}

.escort-news-section {
    padding: 18px 10px 70px;
}

.escort-news-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px 45px;
}

.escort-news-card {
    text-align: left;
}

.escort-news-image {
    display: block;
    width: 100%;
    height: 260px;
    overflow: hidden;
    margin-bottom: 22px;
}

.escort-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.escort-news-title {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 400;
}

.escort-news-title a {
    color: #c98200;
    text-decoration: none;
        font-size: 22px;
}

.escort-news-meta {
    color: #999;
    font-size: 12px;
    margin-bottom: 18px;
}

.escort-news-excerpt {
    color: #000;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 18px;
}

.escort-news-readmore {
    color: #c98200;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

.escort-news-readmore:hover,
.escort-news-title a:hover {
    color: #f9c349;
}

@media (max-width: 991px) {
    .escort-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .escort-news-title {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .escort-news-grid {
        grid-template-columns: 1fr;
    }

    .escort-news-image {
        height: 230px;
    }

    .escort-news-title {
        font-size: 24px;
    }

    .escort-news-excerpt {
        font-size: 16px;
    }
}


/* SINGLE BLOG */

.single-blog-page {
    background: #fff;
    padding: 80px 10px 120px;
}

.single-blog-section {
    max-width: 1100px;
    margin: 0 auto;
    background: #f8f7f4;
    padding: 90px 100px;
}

.single-blog-container {

    margin: 0 auto;
}

.single-blog-image {
    margin-bottom: 30px;
}

.single-blog-image img {
   
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-title {
    margin: 0 0 35px;
    color: #222;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.single-blog-content {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.single-blog-content p {
    margin-bottom: 18px;
}

.single-blog-content a {
    color: #c98200;
    text-decoration: none;
}

.single-blog-content a:hover {
    color: #f9c349;
}

@media (max-width: 991px) {
    .single-blog-section {
        padding: 60px 40px;
    }
}

@media (max-width: 575px) {
    .single-blog-page {
        padding: 40px 10px 80px;
    }

    .single-blog-section {
        padding: 35px 20px;
    }

    .single-blog-title {
        font-size: 26px;
    }

    .single-blog-content {
        font-size: 16px;
    }
}

/* LANGUAGE SWITCHER POLYLANG FLOATING */

.floating-lang-box {
    position: fixed;
    right: 10px;
    bottom: 4px;
    z-index: 9999;
    background: #1f1f1f;
    padding: 20px 20px;
    border-radius: 7px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.floating-lang-item {
    display: none;
    align-items: center;
    gap: 8px;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.floating-lang-item.other-lang {
    order: 1;
}

.floating-lang-item.current-lang {
    order: 2;
    display: flex;
}

.floating-lang-box:hover .floating-lang-item {
    display: flex;
}

.floating-lang-item:hover {
    color: #fff;
}

.floating-lang-item img {
    width: 18px;
    height: auto;
    display: block;
}
.floating-lang-box.active .floating-lang-item {
    display: flex;
}

/* CALL ME BUTTONS */
.floating-contact-wrapper {
    position: fixed;
    left: 10px;
    bottom: 5px;
    z-index: 99999;
}

.floating-contact-toggle,
.floating-contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    text-decoration: none;
}

.floating-contact-toggle {
    background: #000;
}

.floating-contact-btn {
    position: relative;
}

.floating-contact-btn.phone {
    background: #16d46b;
}

.floating-contact-btn.whatsapp {
    background: #25d366;
}

.floating-contact-btn.sms {
    background: #ff4fa0;
}

.floating-contact-btn.viber {
    background: #665cac;
}

.floating-contact-btn span {
    position: absolute;
    left: 70px;
    background: #fff;
    color: #333;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    font-size: 14px;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: 0.25s ease;
}

.floating-contact-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-contact-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    pointer-events: none;
    transition: 0.3s ease;
}

.floating-contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-contact-toggle i {
    transition: 0.3s ease;
}

.floating-contact-toggle.active i {
    transform: rotate(180deg);
}

.error-404-page {
    padding: 100px 0;
    text-align: center;
}

.error-404-content h1 {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.error-404-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-404-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-home {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.btn-home:hover {
    background: #333;
    color: #fff;
}