/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--light);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.section-badge {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.section-badge:hover {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-social-icon {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social-icon:hover {
    border-radius: 50%;
    transform: translateY(-3px);
}

/* ============ New Site Header ============ */
.site-header {
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--bs-primary);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
}

.header-inner {
    padding: 15px 45px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo */
.site-logo {
    height: 55px;
    width: auto;
}

/* Navigation */
#navmenu {
    display: flex;
    align-items: center;
}

#navmenu ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#navmenu li {
    position: relative;
}

#navmenu a {
    color: #d5d5d5;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

/* خط زیرین متحرک */
#navmenu ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 50%;
    left: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--bs-primary), #ff6b6b);
    transition: right 0.35s ease, left 0.35s ease;
    border-radius: 2px;
}

#navmenu ul > li > a:hover::after,
#navmenu ul > li > a.active::after {
    right: 0;
    left: 0;
}

#navmenu a:hover,
#navmenu a.active {
    color: var(--bs-primary);
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(235, 22, 22, 0.4);
}

/* جلوگیری از تداخل خط زیرین با آیتم‌های دراپ‌داون */
#navmenu .dropdown ul a::after {
    display: none;
}

#navmenu li:first-child::after {
    content: '';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown submenu */
#navmenu .dropdown ul {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #151515;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-top: 2px solid var(--bs-primary);
}

#navmenu .dropdown:hover ul,
#navmenu .dropdown.dropdown-active ul,
#navmenu ul li ul.dropdown-active {
    display: flex;
}

#navmenu .dropdown ul li {
    padding: 0 20px;
}

#navmenu .dropdown ul a {
    padding: 10px 0;
    text-transform: none;
    font-size: 14px;
}

.toggle-dropdown {
    font-size: 12px;
}

.mobile-nav-toggle {
    display: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* Header Socials */
.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-inline-end: 20px;
    padding-inline-end: 20px;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

/* Reserve Button */
.btn-reserve {
    background: linear-gradient(135deg, #ff3b3b, #b30000);
    color: #fff;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-reserve:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    color: #fff;
}

/* Decorative Barber Pole */
.barber-pole {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 26px;
    height: 130px;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.barber-pole-cap {
    width: 100%;
    height: 14px;
    background: #d5d5d5;
}

.barber-pole-cap-top {
    border-radius: 13px 13px 0 0;
}

.barber-pole-cap-bottom {
    border-radius: 0 0 13px 13px;
}

.barber-pole-stripes {
    width: 100%;
    height: 102px;
    background: repeating-linear-gradient(45deg,
            #d10000 0,
            #d10000 12px,
            #ffffff 12px,
            #ffffff 24px,
            #0d47a1 24px,
            #0d47a1 36px);
    background-size: 100% 51px;
    animation: barber-pole-spin 1.2s linear infinite;
}

@keyframes barber-pole-spin {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 51px;
    }
}

/* Mobile Menu */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
    }

    #navmenu ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        background: #0a0a0a;
        padding: 20px;
        gap: 5px;
        border-top: 2px solid var(--bs-primary);
    }

    body.navmenu-mobile #navmenu ul {
        display: flex;
    }

    #navmenu .dropdown ul {
        position: static;
        box-shadow: none;
        border-top: none;
        padding-inline-start: 15px;
    }

    #navmenu li:first-child::after {
        display: none;
    }

    .header-actions {
        display: none !important;
    }
}

/* Text-based Logo */
.site-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo-icon {
    font-size: 30px;
    color: var(--bs-primary);
    transform: rotate(-20deg);
    transition: transform 0.3s ease;
}

.site-logo-link:hover .site-logo-icon {
    transform: rotate(0deg);
}

.site-logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.site-logo-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}

.site-logo-subtitle {
    font-size: 11px;
    color: #9a9a9a;
    letter-spacing: 1px;
}
/* کوچک‌تر کردن عنوان اسلایدر بنر */
#header-carousel .carousel-caption h1 {
    font-size: 2.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    #header-carousel .carousel-caption h1 {
        font-size: 1.6rem;
    }
}
/* ============ استایل فرم‌های Contact Form 7 ============ */

/* اینپوت‌ها و تکست‌اریا */
.wpcf7-form .form-control,
.wpcf7-form .form-select {
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.wpcf7-form .form-control:hover,
.wpcf7-form .form-select:hover {
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.wpcf7-form .form-control:focus,
.wpcf7-form .form-select:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 4px rgba(235, 22, 22, 0.15) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

/* برچسب‌های شناور (Floating Labels) */
.wpcf7-form .form-floating > label {
    padding: 14px 18px;
    color: #9a9a9a;
    transition: all 0.3s ease;
}

.wpcf7-form .form-floating > .form-control:focus ~ label,
.wpcf7-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--bs-primary);
    opacity: 1;
    transform: scale(0.8) translateY(-0.6rem) translateX(0.5rem);
}

/* تکست‌اریا کمی بزرگتر و راحت‌تر */
.wpcf7-form textarea.form-control {
    border-radius: 14px !important;
}

/* select سفارشی با آیکون فلش قرمز */
.wpcf7-form select.form-control,
.wpcf7-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23eb1616' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 14px;
}

/* دکمه‌ی ارسال */
.wpcf7-form input[type="submit"] {
    border-radius: 10px !important;
    background: linear-gradient(135deg, #ff3b3b, #b30000) !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(235, 22, 22, 0.25);
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(235, 22, 22, 0.4);
    filter: brightness(1.1);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* حالت لودینگ هنگام ارسال */
.wpcf7-form .wpcf7-spinner {
    margin-inline-start: 10px;
}

/* پیام موفقیت / خطا گردتر و شیک‌تر */
.wpcf7-form .wpcf7-response-output {
    border-radius: 10px !important;
    padding: 14px 20px !important;
    margin-top: 20px !important;
}
/* فاصله بیشتر بین آیکون و متن آدرس/تلفن در بنر */
#header-carousel .carousel-caption h4 i {
    margin-inline-end: 8px !important;
}
/* دکمه‌ی برگشت به بالا - نسخه‌ی گرد و شیک */
.back-to-top {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, #ff3b3b, #b30000) !important;
    border: none !important;
    box-shadow: 0 8px 22px rgba(235, 22, 22, 0.35);
    transition: all 0.35s ease;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 14px 30px rgba(235, 22, 22, 0.5);
}

.back-to-top i {
    transition: transform 0.35s ease;
}

.back-to-top:hover i {
    transform: rotate(-15deg) translateY(-2px);
}
/* ============ Portfolio Gallery ============ */

/* دکمه‌های فیلتر */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.portfolio-filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #d5d5d5;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-filter-btn:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.portfolio-filter-btn.active {
    background: linear-gradient(135deg, #ff3b3b, #b30000);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(235, 22, 22, 0.3);
}

/* کارت نمونه‌کار */
.portfolio-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--bs-secondary);
}

.portfolio-card img {
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

/* لایه‌ی هاور */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20,0,0,0.92) 0%, rgba(235,22,22,0.35) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 25px 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-lightbox-trigger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 16px;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.portfolio-card:hover .portfolio-lightbox-trigger {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-title {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.15s;
}

.portfolio-desc {
    color: #ffb3b3;
    font-size: 13px;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.portfolio-card:hover .portfolio-title,
.portfolio-card:hover .portfolio-desc {
    transform: translateY(0);
    opacity: 1;
}

/* لایت‌باکس تمام‌صفحه */
.portfolio-lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.portfolio-lightbox-modal.active {
    display: flex;
}

.portfolio-lightbox-modal img {
    max-width: 88%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.portfolio-lightbox-caption {
    color: #fff;
    margin-top: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.portfolio-lightbox-close {
    position: absolute;
    top: 30px;
    left: 40px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.portfolio-lightbox-close:hover {
    background: var(--bs-primary);
    transform: rotate(90deg);
}
/* =========================
   Story Section
   ========================= */

.site-story-section {
    width: 100%;
    margin: 0;
    padding: 20px 15px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.site-story-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}


/* Mobile */
@media (max-width: 767px) {

    .site-story-section {
        padding: 15px 10px;
    }

    .site-story-container {
        width: 100%;
    }

}
/* متن زیر استوری */
.site-story-section .wpstory-title,
.site-story-section .wpstory-caption,
.site-story-section .wpstory-text,
.site-story-section .story-title,
.site-story-section .story-caption {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}
/* عنوان زیر هر استوری */
.site-story-section .wpstory-circle-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;

    text-align: center !important;
    margin-top: 8px !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
/* راست‌چین کردن منوی سایت */
#navmenu {
    direction: rtl;
}

#navmenu > ul {
    direction: rtl;
}

#navmenu > ul > li {
    text-align: right;
}

#navmenu > ul > li > a {
    direction: rtl;
    text-align: right;
}
/* =========================================
   چیدمان صحیح هدر فارسی
   ========================================= */

/* کل هدر راست‌به‌چپ */
.site-header {
    direction: rtl;
}

.header-inner {
    direction: rtl;
}

/* لوگو سمت راست */
.site-branding {
    order: 1;
}

/* منو در وسط */
.navmenu {
    order: 2;
    direction: rtl;
}

/* دکمه رزرو و شبکه‌های اجتماعی سمت چپ */
.header-actions {
    order: 3;
    direction: ltr;
}

/* شبکه‌های اجتماعی */
.header-socials {
    direction: ltr;
    display: flex;
    align-items: center;
}

/* دکمه رزرو */
.btn-reserve {
    direction: rtl;
}

/* خود منوی اصلی */
#navmenu > ul {
    direction: rtl;
}

/* گزینه‌های منو */
#navmenu > ul > li {
    text-align: right;
}

/* لینک‌های منو */
#navmenu > ul > li > a {
    direction: rtl;
    text-align: right;
}

/* خط جداکننده */
#navmenu > ul > li:first-child {
    border-left: 1px solid rgba(255,255,255,0.35);
    padding-left: 20px;
    margin-left: 20px;
}
/* =========================================
   Floating Contact Menu
   ========================================= */

.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* دکمه اصلی */
.floating-contact-main {
    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #D41919 !important;
    color: #ffffff !important;

    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);

    transition: transform 0.3s ease;
}

.floating-contact-main:hover {
    transform: scale(1.08);
}


/* سه آیکون */
.floating-contact-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all 0.3s ease;
}


/* حالت باز */
.floating-contact.open .floating-contact-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* آیکون‌های داخلی */
.floating-contact-item {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 19px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    transition: transform 0.25s ease;
}

.floating-contact-item:hover {
    transform: scale(1.1);
}


/* رزرو */
.floating-contact-item.booking {
    background: #D41919;
}


/* واتساپ */
.floating-contact-item.whatsapp {
    background: #25D366;
}


/* تلفن */
.floating-contact-item.phone {
    background: #2196F3;
}


/* موبایل */
@media (max-width: 767px) {

    .floating-contact {
        right: 15px;
        bottom: 15px;
    }

    .floating-contact-main {
        width: 54px;
        height: 54px;
    }

    .floating-contact-item {
        width: 46px;
        height: 46px;
    }
}