/*
 * Yoge Theme – Custom CSS
 * Ported from the Yoge Fitness & Yoga HTML Template.
 * Uses Bootstrap 5 grid; vendor libraries loaded via CDN.
 */

/* ============================================================
   0. CSS Variables (Design Tokens)
   ============================================================ */
:root {
    --yoge-primary:     #e8272a;   /* brand red */
    --yoge-dark:        #111111;
    --yoge-dark-alt:    #1e1e1e;
    --yoge-body:        #666666;
    --yoge-heading:     #111111;
    --yoge-border:      #e5e5e5;
    --yoge-white:       #ffffff;
    --yoge-light-bg:    #f5f5f5;
    --yoge-font-body:   'Nunito Sans', sans-serif;
    --yoge-font-head:   'Playfair Display', serif;
    --yoge-transition:  all 0.3s ease;
    --yoge-radius:      4px;
    --yoge-shadow:      0 4px 24px rgba(0,0,0,0.08);
}

/* ============================================================
   1. Global Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--yoge-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--yoge-body);
    background: var(--yoge-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--yoge-font-head);
    color: var(--yoge-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75em;
}

a {
    color: var(--yoge-primary);
    text-decoration: none;
    transition: var(--yoge-transition);
}
a:hover { color: var(--yoge-dark); }

img { max-width: 100%; height: auto; display: block; }

p { margin-bottom: 1.25rem; }

.page-wrapper { overflow: hidden; }

/* ============================================================
   2. Section Spacing Utilities
   ============================================================ */
.section-xs  { padding: 30px 0; }
.section-sm  { padding: 50px 0; }
.section-md  { padding: 70px 0; }
.section-lg  { padding: 90px 0; }
.section-lgb { padding: 100px 0; }
.section-xl  { padding: 120px 0; }

/* ============================================================
   3. Header
   ============================================================ */
.site-header { position: relative; z-index: 999; }

.site-header.header-style-1 {
    background: transparent;
    position: absolute;
    top: 0; left: 0; right: 0;
}
.site-header.header-style-1.sticky-header {
    position: fixed;
    background: var(--yoge-dark);
    box-shadow: var(--yoge-shadow);
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

.pbmit-header-overlay { padding: 18px 0; }

.site-title { margin: 0; font-size: 1rem; }
.site-title a { color: var(--yoge-white); }
.logo-img { max-height: 55px; width: auto; }

/* Navigation */
.main-menu .navigation {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; align-items: center; gap: 6px;
}
.main-menu .navigation > li > a {
    color: var(--yoge-white);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--yoge-font-body);
    padding: 10px 14px;
    display: block;
    position: relative;
    letter-spacing: 0.3px;
}
.main-menu .navigation > li > a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 14px; right: 14px;
    height: 2px;
    background: var(--yoge-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.active > a::after { transform: scaleX(1); transform-origin: left; }

/* Dropdown */
.main-menu .navigation .dropdown { position: relative; }
.main-menu .navigation .dropdown ul {
    position: absolute;
    top: calc(100% + 10px); left: 0;
    background: var(--yoge-dark);
    min-width: 200px;
    list-style: none;
    margin: 0; padding: 10px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--yoge-transition);
    box-shadow: var(--yoge-shadow);
    border-top: 2px solid var(--yoge-primary);
    z-index: 1000;
}
.main-menu .navigation .dropdown:hover > ul {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-menu .navigation .dropdown ul li a {
    color: rgba(255,255,255,0.8);
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.main-menu .navigation .dropdown ul li a:hover { color: var(--yoge-primary); padding-left: 26px; }

/* Header right buttons */
.pbmit-header-button a { color: var(--yoge-white); font-weight: 600; font-size: 15px; }
.pbmit-header-search-btn a { color: var(--yoge-white); font-size: 18px; padding: 0 15px; }

/* CTA Button in header */
.pbmit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--yoge-transition);
    position: relative;
    overflow: hidden;
}
.pbmit-btn-global {
    background: var(--yoge-primary);
    color: var(--yoge-white);
    border-radius: 50px;
}
.pbmit-btn-global:hover {
    background: var(--yoge-dark);
    color: var(--yoge-white);
}
.pbmit-btn .pbmit-button-icon { font-size: 12px; }

/* Mobile Toggle */
.navbar-toggler {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--yoge-white);
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
    display: none;
}
.closepanel {
    display: none;
    position: absolute; top: 16px; right: 16px;
    cursor: pointer; color: var(--yoge-white);
}
.closepanel svg rect { fill: var(--yoge-white); }

/* ============================================================
   4. Hero / Slider Area
   ============================================================ */
.pbmit-slider-area {
    background: var(--yoge-dark);
    min-height: 700px;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
}
.pbmit-slider-area .swiper { width: 100%; height: 100%; }
.pbmit-hero-slide {
    min-height: 700px;
    display: flex; align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.pbmit-hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
}
.pbmit-hero-content {
    position: relative; z-index: 2;
    color: var(--yoge-white);
    padding: 0 20px;
}
.pbmit-hero-content .pbmit-sub-title {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yoge-primary);
    font-weight: 700;
    margin-bottom: 16px;
}
.pbmit-hero-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--yoge-white);
    line-height: 1.1;
    margin-bottom: 28px;
}
.pbmit-hero-content p { font-size: 18px; margin-bottom: 36px; opacity: 0.85; }

/* Swiper arrows */
.swiper-button-next, .swiper-button-prev {
    color: var(--yoge-white) !important;
    background: var(--yoge-primary);
    width: 50px !important; height: 50px !important;
    border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; }

/* ============================================================
   5. Page Title Banner (Inner Pages)
   ============================================================ */
.pbmit-title-bar-wrapper {
    background: var(--yoge-dark);
    background-image: linear-gradient(135deg, #111 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.pbmit-title-bar-wrapper::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="20"/></svg>') center/cover;
}
.pbmit-title-bar-content { position: relative; z-index: 2; }
.pbmit-title-bar-title h1 {
    color: var(--yoge-white);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin: 0 0 12px;
}
.pbmit-breadcrumb ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 8px; align-items: center;
    flex-wrap: wrap;
}
.pbmit-breadcrumb ul li { color: rgba(255,255,255,0.6); font-size: 14px; }
.pbmit-breadcrumb ul li::after { content: '/'; margin-left: 8px; }
.pbmit-breadcrumb ul li:last-child::after { display: none; }
.pbmit-breadcrumb ul li a { color: var(--yoge-primary); }
.pbmit-breadcrumb ul li.active { color: var(--yoge-white); }

/* ============================================================
   6. Info Boxes / Icon Boxes
   ============================================================ */
.pbmit-ihbox {
    padding: 30px;
    transition: var(--yoge-transition);
}
.pbmit-ihbox:hover { transform: translateY(-5px); }

.pbmit-ihbox-icon-wrapper {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--yoge-primary);
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--yoge-white);
}

.ihbox-section_one { background: var(--yoge-light-bg); }
.ihbox-one_bg { background: var(--yoge-white); box-shadow: var(--yoge-shadow); }

/* ============================================================
   7. About Section
   ============================================================ */
.about-us-one_main { background: var(--yoge-white); }
.about-us-one_leftbox img { border-radius: var(--yoge-radius); }
.about-us-one_rightbox { padding-left: 40px; }

.pbmit-sub-title-wrapper { margin-bottom: 10px; }
.pbmit-sub-title {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--yoge-primary);
    font-family: var(--yoge-font-body);
}

.about-one-list-group { list-style: none; margin: 0; padding: 0; }
.about-one-list-group .list-group-item {
    padding: 8px 0;
    border: none;
    background: transparent;
    display: flex; align-items: center; gap: 12px;
    color: var(--yoge-body);
    font-size: 15px;
}
.about-one-list-group .list-group-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--yoge-primary);
    font-size: 13px;
    flex-shrink: 0;
}

/* ============================================================
   8. Services / Classes
   ============================================================ */
.yoge-service-card {
    background: var(--yoge-white);
    border: 1px solid var(--yoge-border);
    border-radius: var(--yoge-radius);
    overflow: hidden;
    transition: var(--yoge-transition);
    height: 100%;
}
.yoge-service-card:hover { box-shadow: var(--yoge-shadow); transform: translateY(-4px); }
.yoge-service-card .card-img img { width: 100%; height: 260px; object-fit: cover; }
.yoge-service-card .card-body { padding: 28px; }
.yoge-service-card .card-title { font-size: 1.2rem; margin-bottom: 12px; }
.yoge-service-card .card-title a { color: var(--yoge-heading); }
.yoge-service-card .card-title a:hover { color: var(--yoge-primary); }

/* ============================================================
   9. Team Members
   ============================================================ */
.pbmit-team-box {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--yoge-radius);
}
.pbmit-team-box img { width: 100%; height: 350px; object-fit: cover; }
.pbmit-team-box .pbminfotech-box-content {
    padding: 20px;
    background: var(--yoge-white);
    border-top: 3px solid var(--yoge-primary);
}
.pbmit-team-box .pbminfotech-box-title { font-size: 1.1rem; margin: 0 0 4px; }
.pbmit-team-box .pbminfotech-box-team-position {
    font-size: 13px;
    color: var(--yoge-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Social overlay */
.pbmit-team-social {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 16px;
    display: flex; gap: 10px; justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    transform: translateY(-100%);
    transition: var(--yoge-transition);
}
.pbmit-team-box:hover .pbmit-team-social { transform: translateY(0); }
.pbmit-team-social a {
    width: 34px; height: 34px;
    background: var(--yoge-primary);
    color: var(--yoge-white);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 13px;
}

/* ============================================================
   10. Events
   ============================================================ */
.yoge-event-item {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--yoge-border);
    border-radius: var(--yoge-radius);
    margin-bottom: 20px;
    transition: var(--yoge-transition);
}
.yoge-event-item:hover { box-shadow: var(--yoge-shadow); border-color: var(--yoge-primary); }

.yoge-event-date {
    min-width: 70px; text-align: center;
    background: var(--yoge-primary);
    color: var(--yoge-white);
    padding: 12px 10px;
    border-radius: var(--yoge-radius);
    flex-shrink: 0;
}
.yoge-event-date .day { font-size: 2rem; font-weight: 800; line-height: 1; }
.yoge-event-date .month { font-size: 13px; font-weight: 600; text-transform: uppercase; }

.event-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--yoge-primary); }

/* ============================================================
   11. Blog
   ============================================================ */
.blog_one .pbmit-blog-style-1 { margin-bottom: 30px; }

.pbmit-featured-container { overflow: hidden; border-radius: var(--yoge-radius) var(--yoge-radius) 0 0; }
.pbmit-featured-container img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.pbmit-blog-style-1:hover .pbmit-featured-container img { transform: scale(1.05); }

.pbmit-blog-content { padding: 24px; background: var(--yoge-white); border: 1px solid var(--yoge-border); border-top: none; border-radius: 0 0 var(--yoge-radius) var(--yoge-radius); }
.pbmit-post-title { font-size: 1.15rem; margin: 12px 0 14px; }
.pbmit-post-title a { color: var(--yoge-heading); }
.pbmit-post-title a:hover { color: var(--yoge-primary); }

/* Post meta */
.pbmit-meta-container { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--yoge-body); margin-bottom: 8px; }
.pbmit-meta-container span { display: flex; align-items: center; gap: 6px; }
.pbmit-meta-container i { color: var(--yoge-primary); }

/* ============================================================
   12. Counter Section
   ============================================================ */
.counter-section_one { background: var(--yoge-dark); }
.pbmit-bg-color-global { background: var(--yoge-primary) !important; }

.counter-one_box { text-align: center; padding: 40px 20px; }
.counter-one_box .pbmit-counter { font-family: var(--yoge-font-head); font-size: 3.5rem; font-weight: 800; color: var(--yoge-white); line-height: 1; }
.counter-one_box .pbmit-counter-title { font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; font-family: var(--yoge-font-body); }

/* ============================================================
   13. Testimonials
   ============================================================ */
.pbminfotech-box-testimonial {
    background: var(--yoge-white);
    padding: 36px;
    border-radius: var(--yoge-radius);
    box-shadow: var(--yoge-shadow);
    position: relative;
}
.pbminfotech-box-testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 40px;
    color: var(--yoge-primary);
    opacity: 0.15;
    position: absolute; top: 20px; right: 24px;
}
.pbminfotech-box-desc { font-style: italic; margin-bottom: 20px; }
.pbminfotech-box-author { font-weight: 700; color: var(--yoge-heading); }
.pbminfotech-box-team-position { font-size: 13px; color: var(--yoge-primary); }
.pbminfotech-box-star-ratings { color: #f5a623; margin-bottom: 12px; font-size: 13px; }

/* ============================================================
   14. FAQ Section
   ============================================================ */
.yoge-faq-item {
    border: 1px solid var(--yoge-border);
    border-radius: var(--yoge-radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.yoge-faq-item .faq-question {
    padding: 18px 24px;
    background: var(--yoge-light-bg);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700;
    color: var(--yoge-heading);
    font-size: 15px;
    transition: var(--yoge-transition);
}
.yoge-faq-item .faq-question:hover,
.yoge-faq-item.active .faq-question { background: var(--yoge-primary); color: var(--yoge-white); }
.yoge-faq-item .faq-question i { transition: transform 0.3s ease; }
.yoge-faq-item.active .faq-question i { transform: rotate(45deg); }
.yoge-faq-item .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.yoge-faq-item.active .faq-answer { max-height: 400px; padding: 20px 24px; }

/* ============================================================
   15. Contact Page
   ============================================================ */
.yoge-contact-form input,
.yoge-contact-form textarea,
.yoge-contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--yoge-border);
    border-radius: var(--yoge-radius);
    font-family: var(--yoge-font-body);
    font-size: 15px;
    color: var(--yoge-heading);
    background: var(--yoge-white);
    transition: border-color 0.2s ease;
    margin-bottom: 20px;
}
.yoge-contact-form input:focus,
.yoge-contact-form textarea:focus {
    border-color: var(--yoge-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232,39,42,0.1);
}
.yoge-contact-form textarea { min-height: 140px; resize: vertical; }

.yoge-contact-info-box {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 28px;
}
.yoge-contact-info-icon {
    width: 54px; height: 54px;
    background: var(--yoge-primary);
    color: var(--yoge-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* ============================================================
   16. Footer
   ============================================================ */
.site-footer {
    background: var(--yoge-dark-alt);
    color: rgba(255,255,255,0.7);
}

.footer-top-section {
    background: var(--yoge-dark);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Footer icon list (quick links in top bar) */
.pbmit-icon-list-items.pbmit-inline-items {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 6px 0;
}
.pbmit-icon-list-items.pbmit-inline-items .pbmit-icon-list-item::after {
    content: '|'; margin: 0 12px; opacity: 0.3; color: var(--yoge-white);
}
.pbmit-icon-list-items.pbmit-inline-items .pbmit-icon-list-item:last-child::after { display: none; }
.pbmit-icon-list-items a { color: rgba(255,255,255,0.7); font-size: 14px; }
.pbmit-icon-list-items a:hover { color: var(--yoge-primary); }

/* Footer widget area */
.pbmit-footer-widget-area { padding: 70px 0 40px; }

.widget-title {
    color: var(--yoge-white);
    font-size: 1rem;
    font-family: var(--yoge-font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--yoge-primary);
    display: inline-block;
}

.pbmit-footer-logo { margin-bottom: 20px; }
.pbmit-footer-logo img { max-height: 50px; }
.pbmit-footer-text { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }

.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.widget ul li a { color: rgba(255,255,255,0.7); font-size: 14px; padding-left: 12px; position: relative; }
.widget ul li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--yoge-primary); font-size: 12px; }
.widget ul li a:hover { color: var(--yoge-primary); padding-left: 18px; }

/* Social links */
.pbmit-social-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.pbmit-social-links li a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--yoge-transition);
}
.pbmit-social-links li a:hover { background: var(--yoge-primary); border-color: var(--yoge-primary); color: var(--yoge-white); }

/* Working hours */
.pbmit-timelist-list { list-style: none; margin: 0; padding: 0; }
.pbmit-timelist-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; }
.pbmit-timelist-li-title { color: rgba(255,255,255,0.7); }

/* Address widget */
.pbmit-contact-widget-address { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); }

/* Copyright bar */
.pbmit-footer-text-area {
    background: rgba(0,0,0,0.2);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.pbmit-footer-copyright-text-area { font-size: 14px; }

.pbmit-footer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.pbmit-footer-menu .menu-item a { color: rgba(255,255,255,0.6); font-size: 14px; padding: 0 12px; border-right: 1px solid rgba(255,255,255,0.15); }
.pbmit-footer-menu .menu-item:last-child a { border-right: none; }
.pbmit-footer-menu .menu-item a:hover { color: var(--yoge-primary); }

/* ihbox contact in footer top */
.pbmit-ihbox-style-13 .pbmit-ihbox-icon i {
    font-size: 24px;
    color: var(--yoge-primary);
    margin-right: 12px;
}
.pbmit-element-title { color: var(--yoge-white); font-size: 1rem; margin: 0; font-family: var(--yoge-font-body); }
.pbmit-element-title a { color: var(--yoge-white); }
.pbmit-element-title a:hover { color: var(--yoge-primary); }

/* ============================================================
   17. Sidebar Widgets
   ============================================================ */
.yoge-sidebar .widget { margin-bottom: 36px; }
.yoge-sidebar .widget-title {
    color: var(--yoge-heading);
    border-bottom-color: var(--yoge-primary);
    display: block;
}
.yoge-sidebar ul { list-style: none; margin: 0; padding: 0; }
.yoge-sidebar ul li { padding: 8px 0; border-bottom: 1px solid var(--yoge-border); font-size: 14px; }
.yoge-sidebar ul li a { color: var(--yoge-body); }
.yoge-sidebar ul li a:hover { color: var(--yoge-primary); }
.yoge-sidebar .tagcloud a {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--yoge-border);
    border-radius: 20px;
    font-size: 13px !important;
    margin: 3px;
    color: var(--yoge-body);
    transition: var(--yoge-transition);
}
.yoge-sidebar .tagcloud a:hover { background: var(--yoge-primary); border-color: var(--yoge-primary); color: var(--yoge-white); }

/* ============================================================
   18. Elementor Overrides
   ============================================================ */
.elementor-section { position: relative; }
.elementor-widget-wrap { display: flex; flex-wrap: wrap; }

/* Full-width page: remove default margins */
body.page-template-elementor-full-width .site-header,
body.elementor-page .site-header { position: absolute; }

/* ============================================================
   19. AOS Animations
   ============================================================ */
[data-aos] { transition-property: transform, opacity; }

/* ============================================================
   20. Scroll to top
   ============================================================ */
.yoge-scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--yoge-primary);
    color: var(--yoge-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--yoge-transition);
    z-index: 9999;
    border: none;
}
.yoge-scroll-top.visible { opacity: 1; visibility: visible; }
.yoge-scroll-top:hover { background: var(--yoge-dark); }

/* ============================================================
   21. Responsive
   ============================================================ */
@media (max-width: 1199px) {
    .navbar-toggler { display: flex; }
    .collapse.navbar-collapse {
        position: fixed;
        top: 0; left: -300px; bottom: 0;
        width: 280px;
        background: var(--yoge-dark);
        padding: 70px 24px 24px;
        overflow-y: auto;
        transition: left 0.35s ease;
        z-index: 9999;
    }
    .collapse.navbar-collapse.show { left: 0; }
    .closepanel { display: block; }
    .main-menu .navigation { flex-direction: column; gap: 0; }
    .main-menu .navigation > li > a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .main-menu .navigation .dropdown ul {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        background: rgba(255,255,255,0.05);
        margin: 6px 0 6px 14px;
        padding: 0;
        box-shadow: none; border-top: none;
    }
}

@media (max-width: 991px) {
    .section-lg  { padding: 60px 0; }
    .section-lgb { padding: 70px 0; }
    .section-xl  { padding: 80px 0; }
    .about-us-one_rightbox { padding-left: 0; margin-top: 40px; }
    .pbmit-footer-menu { justify-content: flex-start; margin-top: 12px; }
}

@media (max-width: 767px) {
    .pbmit-hero-content h2 { font-size: 2.2rem; }
    .counter-one_box .pbmit-counter { font-size: 2.5rem; }
    .pbmit-footer-text-area .row > div + div { margin-top: 12px; }
}

@media (max-width: 575px) {
    .pbmit-right-box .pbmit-button-box { display: none; }
    .pbmit-header-button-text-1, .pbmit-header-button-text-2 { display: none; }
}
