/* ============================================================
   Printfetti — Theme Color Overrides
   ============================================================
   Palette:
     --brand-primary:    #FF2D9A  (neon pink — main brand)
     --brand-secondary:  #00B2FF  (electric blue — secondary accent)
     --brand-warm:       #FF8A00  (orange — warm supporting accent)
     --brand-accent:     #FFD400  (bright yellow — highlight accent)
     --brand-danger:     #F54336  (red — destructive/error)

   Mapped to Frintem theme tokens:
     orange  (#ff4328) → brand-primary   #FF2D9A
     blue    (#1a1e5d) → brand-dark      #0B0B0B
     yellow  (#fec931) → brand-accent    #FFD400
     purple  (#5f43c5) → brand-primary   #FF2D9A
     pink    (#e6498f) → brand-warm      #FF8A00
     lightblue (#209ffa) → brand-secondary #00B2FF
     past/teal (#20ad96) → brand-secondary #00B2FF
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --brand-primary: #FF2D9A;
    --brand-secondary: #00B2FF;
    --brand-warm: #FF8A00;
    --brand-accent: #FFD400;
    --brand-danger: #F54336;
    --brand-dark: #0B0B0B;
    --brand-dark-alt: #111111;
    --brand-light: #F5F5F5;
    --font-display: "Plus Jakarta Sans", "Rubik", sans-serif;
}


/* ===========================================
   1. Background utility classes
   =========================================== */

.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.bg_default_purple {
    background-color: var(--brand-primary) !important;
}

.bg_default_pink {
    background-color: var(--brand-warm) !important;
}

.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.bg_default_past {
    background-color: var(--brand-secondary) !important;
}

.bg_default_blue {
    background-color: var(--brand-dark) !important;
}


/* ===========================================
   2. Text selection
   =========================================== */

::-moz-selection {
    background-color: var(--brand-primary);
}

::selection {
    background-color: var(--brand-primary);
}


/* ===========================================
   3. Links & text accents
   =========================================== */

a:hover,
a:focus {
    color: var(--brand-primary);
}

.text_btn:hover,
.text_btn:hover span {
    color: var(--brand-primary);
}

.border_left_yellow {
    border-left-color: var(--brand-secondary) !important;
}

.border_left_orange {
    border-left-color: var(--brand-primary) !important;
}


/* ===========================================
   4. Buttons (.custom_btn)
   =========================================== */

/* Global rounded pill shape for all buttons */
.custom_btn {
    border-radius: 50px;
}

.custom_btn:before {
    border-radius: 50px;
}

.custom_btn span {
    border-radius: 50%;
}

/* Orange button → brand primary */
.custom_btn.bg_default_orange {
    background-color: var(--brand-primary);
}

.custom_btn.bg_default_orange:before {
    background: var(--brand-secondary);
}

.custom_btn.bg_default_orange:hover {
    color: var(--brand-dark);
}

/* Yellow button → brand secondary */
.custom_btn.bg_default_yellow {
    background-color: var(--brand-secondary);
    color: var(--brand-dark);
}

.custom_btn.bg_default_yellow:before {
    background: var(--brand-primary);
}

.custom_btn.bg_default_yellow:hover {
    color: #fff;
}

/* Purple button → brand primary */
.custom_btn.bg_default_purple {
    background-color: var(--brand-primary);
}

/* Blue button → brand dark */
.custom_btn.bg_default_blue {
    background-color: var(--brand-dark);
}

.custom_btn.bg_default_blue:before {
    background: var(--brand-primary);
}

/* White/outlined button icon bg */
.custom_btn.bg_white span {
    background-color: var(--brand-dark);
}

.custom_btn.bg_white:before {
    background: var(--brand-primary);
}

/* Border buttons */
.custom_btn.btn_border span.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.custom_btn.btn_border span.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.custom_btn.btn_border span.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}


/* ===========================================
   5. Floating chat widget
   =========================================== */

/* Hide the old back-to-top button */
#backtotop {
    display: none !important;
}

/* Widget wrapper */
#chat_widget {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    font-family: inherit;
}

/* Toggle button */
#chat_btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 45, 154, 0.4);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    right: 0;
}

#chat_btn:hover {
    background: var(--brand-secondary);
    box-shadow: 0 4px 20px rgba(0, 178, 255, 0.4);
    transform: scale(1.1);
}

/* Panel */
#chat_panel {
    display: flex;
    flex-direction: column;
    width: 340px;
    max-height: 460px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    position: absolute;
    bottom: 72px;
    right: 0;
}

#chat_header {
    background: var(--brand-primary);
    color: #fff;
    padding: 16px 18px;
    border-radius: 16px 16px 0 0;
}

/* Rep info in header */
#chat_rep {
    display: flex;
    align-items: center;
    gap: 12px;
}

#chat_avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

#chat_rep_info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#chat_rep_info strong {
    font-size: 14px;
    letter-spacing: 0.3px;
}

#chat_status {
    font-size: 11px;
    opacity: 0.85;
}

#chat_status i {
    font-size: 7px;
    color: #ef4444;
    margin-right: 4px;
}

/* Message area */
#chat_body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 14px;
    min-height: 100px;
    max-height: 180px;
    background: var(--brand-light);
}

.chat_bubble {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    max-width: 92%;
}

.chat_bubble_avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.chat_bubble_text {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
    word-wrap: break-word;
}

.chat_bubble--bot {
    margin-right: auto;
}

.chat_bubble--bot .chat_bubble_text {
    background: #fff;
    color: var(--brand-dark);
    border: 1px solid #e6e6e6;
    border-bottom-left-radius: 4px;
}

.chat_bubble--user {
    flex-direction: row-reverse;
    margin-left: auto;
}

.chat_bubble--user .chat_bubble_avatar {
    background: var(--brand-secondary);
}

.chat_bubble--user .chat_bubble_text {
    background: var(--brand-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Form */
#chat_form_wrap {
    border-top: 1px solid #eee;
    background: #fff;
}

#chat_form {
    background: #fff;
}

#chat_fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#chat_fields input,
#chat_fields textarea {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    resize: none;
    font-family: inherit;
    background: transparent;
}

#chat_fields input:focus,
#chat_fields textarea:focus {
    background: #fafafa;
}

#chat_fields textarea {
    border-bottom: none;
}

#chat_send {
    width: 100%;
    border: none;
    background: var(--brand-primary);
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

#chat_send:hover {
    background: var(--brand-secondary);
}

#chat_send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sent confirmation */
#chat_sent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

#chat_sent_icon {
    font-size: 48px;
    color: #4ade80;
    margin-bottom: 12px;
}

#chat_sent p {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--brand-dark);
}

#chat_new_msg {
    margin-top: 16px;
    border: none;
    background: transparent;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

#chat_new_msg:hover {
    color: var(--brand-secondary);
}

/* Responsive */
@media (max-width: 480px) {
    #chat_panel {
        width: calc(100vw - 50px);
        right: 0;
    }
}


/* ===========================================
   6. Preloader
   =========================================== */

.preloader .spinner {
    border-top-color: var(--brand-primary);
}


/* ===========================================
   7. Owl carousel dots
   =========================================== */

.owl-theme .owl-dots .owl-dot span {
    background: var(--brand-primary);
}

.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--brand-primary);
}


/* ===========================================
   8. Pagination
   =========================================== */

.pagination_nav li:hover a,
.pagination_nav li.active a {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
}


/* ===========================================
   9. Header — default style
   =========================================== */

/* Top bar */
.header_section .header_top.bg_default_blue {
    background-color: var(--brand-dark) !important;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #FF2D9A, #FF8A00, #FFD400, #00B2FF) 1;
}

/* Non-home pages: show the "stuck" header appearance immediately */
.header_section.header_solid {
    position: fixed;
    background-color: var(--brand-dark);
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

.header_section.header_solid .header_top {
    display: none;
}

.header_section.header_solid .header_bottom {
    background-color: var(--brand-dark);
}

/* Solid (inner) pages: keep logo inside the header column so it never covers
   nav items (esp. Contact) or the page hero title in the upper-left. */
.header_section.header_solid .header_bottom .brand_logo {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    overflow: hidden;
}

.header_section.header_solid .header_bottom .brand_logo>a>img {
    height: 72px;
    max-width: 100%;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Search btn accent */
.header_section .action_btn.bg_default_purple {
    background-color: var(--brand-primary) !important;
}

/* Nav links — inactive = white, active = blue */
.header_section .main_menu>ul>li>a,
.header_default .main_menu>ul>li>a,
.main_menu>ul>li>a {
    color: #ffffff !important;
}

.header_section .main_menu>ul>li:hover>a,
.header_section .main_menu>ul>li.active>a,
.header_default .main_menu>ul>li:hover>a,
.header_default .main_menu>ul>li.active>a,
.main_menu>ul>li:hover>a,
.main_menu>ul>li.active>a {
    color: #00B2FF !important;
}

/* Submenu active/hover */
.main_menu .has_child .submenu li:hover>a,
.main_menu .has_child .submenu li.active>a {
    color: var(--brand-primary);
}

/* Primary header nav (fallback) */
.primary_header .main_menu>ul>li:hover>a,
.primary_header .main_menu>ul>li.active>a {
    background-color: var(--brand-primary);
}

.primary_header .search_btn:hover,
.primary_header .search_btn.active {
    background-color: var(--brand-primary);
}

/* Mobile menu button hover */
.primary_header .mobilemenu_btns_group button:hover,
.primary_header .mobilemenu_btns_group button.active {
    color: var(--brand-primary);
}

/* Secondary header nav */
.secondary_header .main_menu>ul>li:hover>a,
.secondary_header .main_menu>ul>li.active>a {
    color: var(--brand-primary);
}

/* Header contact info icon */
.header_contact_info li i {
    color: var(--brand-secondary);
}

/* Header CTA button — gradient glow matching hero */
/* Nav login / account icon */
.nav_login_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 28px;
    line-height: 1;
    padding: 0 12px;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.nav_login_icon i {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(79, 31, 143, 0.5);
}

.nav_login_icon:hover {
    color: #00B2FF !important;
    transform: scale(1.06);
}

.nav_login_icon:hover i {
    -webkit-text-stroke: 1.5px #4f1f8f;
    text-shadow: 0 0 10px rgba(79, 31, 143, 0.7);
}

.header_section .custom_btn.bg_default_yellow {
    background: linear-gradient(135deg, #FF2D9A, #FF8A00) !important;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    box-shadow:
        0 0 14px rgba(255, 45, 154, 0.35),
        0 0 35px rgba(255, 138, 0, 0.15);
    transition: all 0.3s ease;
    animation: heroBtnPulse 3s ease-in-out infinite;
}

.header_section .custom_btn.bg_default_yellow:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 22px rgba(255, 45, 154, 0.55),
        0 0 50px rgba(255, 138, 0, 0.3);
    color: #fff;
}

.header_section .custom_btn.bg_default_yellow:before {
    background: linear-gradient(135deg, #FF8A00, #FFD400) !important;
}

/* Header arrow span — light blue bg + white thick arrow */
.header_section .custom_btn.bg_default_yellow span {
    background-color: var(--brand-secondary) !important;
    color: #fff;
}

.header_section .custom_btn.bg_default_yellow span i {
    color: #fff;
    font-weight: 900;
    -webkit-text-stroke: 1px #fff;
}


/* ===========================================
   10. Mobile sidebar menu
   =========================================== */

.sidebar_mobile_menu {
    background-color: var(--brand-dark) !important;
}

.sidebar_mobile_menu .mobile_menu_list>ul>li:hover>a,
.sidebar_mobile_menu .mobile_menu_list>ul>li.active>a {
    color: var(--brand-primary);
}

.sidebar_mobile_menu .mobile_menu_list .dropdown-menu>li:hover>a,
.sidebar_mobile_menu .mobile_menu_list .dropdown-menu>li.active>a {
    color: var(--brand-primary);
}

.sidebar_mobile_menu .close_btn:hover {
    color: var(--brand-primary);
}


/* ===========================================
   11. Banner / Hero
   =========================================== */

/* Homepage display type — bold geometric sans matching the hero reference */
body.page-home,
body.page-home .custom_btn,
body.page-home .header_section .main_menu > ul > li > a,
body.page-home .header_section .header_contact_info,
body.page-home .header_section .header_items_list a {
    font-family: var(--font-display);
}

body.page-home .header_section .main_menu > ul > li > a {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.home_two_banner {
    background-image: linear-gradient(0deg, #0B0B0B 0%, #1a0a2e 50%, #2d1054 99%) !important;
    background-color: var(--brand-dark);
    min-height: auto !important;
    /* Clear the oversized overflowing header logo (~130px) + top bar */
    padding-top: 176px !important;
    padding-bottom: 36px !important;
    overflow: hidden;
}

/* One tight composition — copy and product visual share the same vertical center */
.home_two_banner > .container > .row {
    align-items: center !important;
    column-gap: 0;
}

.home_two_banner .banner_contant {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 36rem;
}

.home_two_banner .item_title {
    font-family: var(--font-display) !important;
    font-size: clamp(44px, 5vw, 68px) !important;
    font-weight: 800 !important;
    line-height: 1.02 !important;
    margin-bottom: 18px !important;
    letter-spacing: -1.6px !important;
    color: #fff !important;
}

.home_two_banner .hero_title_accent {
    display: inline;
    background: linear-gradient(105deg,
            var(--brand-primary) 0%,
            var(--brand-warm) 48%,
            var(--brand-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home_two_banner .sub_title {
    display: none !important;
}

.home_two_banner .hero_lead,
.home_two_banner .banner_contant p.hero_lead {
    margin: 0 0 24px !important;
    max-width: 30rem !important;
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.home_two_banner .hero_feature_list {
    list-style: none;
    margin: 0 0 28px !important;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.home_two_banner .hero_feature_list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
}

.home_two_banner .hero_feature_list li i {
    color: var(--brand-secondary);
    font-size: 15px;
}

.home_two_banner .decoration_text {
    display: none !important;
}

/* Ring sized to the column — products scale up inside it */
.home_two_banner .banner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1;
    height: auto !important;
    margin: 0 0 0 auto !important;
    float: none !important;
}

.home_two_banner .banner_image:after {
    top: 50% !important;
    left: 50% !important;
    width: 88% !important;
    height: 88% !important;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 35% 35%,
            rgba(87, 52, 201, 0.9) 0%,
            rgba(45, 16, 84, 0.95) 60%,
            rgba(11, 11, 11, 0.9) 100%) !important;
    box-shadow:
        0 0 60px rgba(255, 45, 154, 0.15),
        0 0 120px rgba(87, 52, 201, 0.2),
        inset 0 0 80px rgba(0, 178, 255, 0.08);
}

.home_two_banner .banner_image picture {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.home_two_banner .banner_image img {
    display: block;
    width: 118%;
    max-width: none;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center 62%;
    position: relative;
    z-index: 1;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(255, 45, 154, 0.3)) drop-shadow(0 5px 20px rgba(0, 178, 255, 0.2));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Outer ring — spinning brand gradient */
.home_two_banner .banner_image:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    height: auto !important;
    z-index: 0 !important;
    box-sizing: border-box !important;
    border: none !important;
    border-radius: 100% !important;
    background: conic-gradient(from 0deg,
            var(--brand-primary),
            var(--brand-warm),
            var(--brand-accent),
            var(--brand-secondary),
            var(--brand-primary)) !important;
    -webkit-mask:
        radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px));
    mask:
        radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px));
    transform-origin: 50% 50% !important;
    animation: heroRingSpin 4s linear infinite !important;
    opacity: 0.9;
    pointer-events: none;
}

/* Hero CTA buttons spacing */
.home_two_banner .banner_contant .custom_btn {
    margin-top: 0;
    font-family: var(--font-display);
}

.banner_contant .sub_title {
    color: var(--brand-secondary);
}

/* Hero "Start Your Order" button — pop treatment */
.home_two_banner .custom_btn.bg_default_orange {
    background: linear-gradient(135deg, #FF2D9A, #FF8A00);
    padding: 14px 44px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    box-shadow:
        0 0 20px rgba(255, 45, 154, 0.4),
        0 0 50px rgba(255, 138, 0, 0.2);
    transition: all 0.3s ease;
    animation: heroBtnPulse 3s ease-in-out infinite;
}

.home_two_banner .custom_btn.bg_default_orange:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 30px rgba(255, 45, 154, 0.6),
        0 0 70px rgba(255, 138, 0, 0.35);
    color: #fff;
}

.home_two_banner .custom_btn.bg_default_orange:before {
    background: linear-gradient(135deg, #FF8A00, #FFD400);
}

.home_two_banner .custom_btn.bg_default_orange span {
    background: rgba(255, 255, 255, 0.95);
}

/* Hero "Get a Quote" button — electric blue with glow */
.home_two_banner .hero_btn_quote {
    background: linear-gradient(135deg, #00B2FF, #00D4FF);
    padding: 14px 44px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    border: none;
    box-shadow:
        0 0 20px rgba(0, 178, 255, 0.4),
        0 0 50px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    animation: heroQuotePulse 3s ease-in-out infinite;
}

.home_two_banner .hero_btn_quote:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 30px rgba(0, 178, 255, 0.6),
        0 0 70px rgba(0, 212, 255, 0.35);
    color: #fff;
}

.home_two_banner .hero_btn_quote:before {
    background: linear-gradient(135deg, #00D4FF, #00B2FF);
}

.home_two_banner .hero_btn_quote span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.home_two_banner .hero_btn_quote span i {
    color: #fff;
}

@media (max-width: 991px) {
    .home_two_banner {
        padding-top: 150px !important;
        padding-bottom: 28px !important;
    }

    .home_two_banner .banner_contant {
        max-width: none;
        margin: 0 auto;
        text-align: center;
    }

    .home_two_banner .banner_contant p,
    .home_two_banner .hero_lead {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .home_two_banner .hero_feature_list {
        justify-content: center;
    }

    .home_two_banner .banner_image {
        width: min(100%, 480px) !important;
        height: auto !important;
        max-width: 100% !important;
        margin: 12px auto 0 !important;
    }

    .home_two_banner .banner_image:after {
        width: 88% !important;
        height: 88% !important;
    }

    .home_two_banner .banner_image img {
        width: 112%;
    }

    .home_two_banner .item_title {
        font-size: clamp(36px, 7vw, 52px) !important;
        margin-bottom: 14px !important;
        letter-spacing: -1.2px !important;
    }
}

@media (max-width: 575px) {
    .home_two_banner {
        padding-top: 132px !important;
        padding-bottom: 24px !important;
    }

    .home_two_banner .banner_image {
        width: min(92vw, 360px) !important;
        height: auto !important;
        margin-top: 8px !important;
    }

    .home_two_banner .banner_image img {
        width: 120%;
        object-position: center 58%;
    }

    .home_two_banner .item_title {
        font-size: 34px !important;
        margin-bottom: 12px !important;
        letter-spacing: -1px !important;
    }

    .home_two_banner .hero_lead {
        font-size: 16px !important;
        margin-bottom: 18px !important;
    }

    .home_two_banner .hero_feature_list {
        gap: 10px 16px;
        margin-bottom: 22px !important;
    }

    .home_two_banner .hero_feature_list li {
        font-size: 14px;
    }

    .home_two_banner .banner_contant .custom_btn {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-top: 0 !important;
        text-align: center;
    }
}

@keyframes heroQuotePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 178, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 28px rgba(0, 178, 255, 0.55), 0 0 65px rgba(0, 212, 255, 0.3);
    }
}

@keyframes heroBtnPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 45, 154, 0.4), 0 0 50px rgba(255, 138, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 28px rgba(255, 45, 154, 0.55), 0 0 65px rgba(255, 138, 0, 0.3);
    }
}

.banner_contant .decoration_text {
    color: rgba(0, 178, 255, 0.06);
}


/* ===========================================
   12. Section titles
   =========================================== */

.section_title .small_title {
    color: var(--brand-primary);
}

.section_title .biggest_title {
    color: rgba(255, 45, 154, 0.04);
}


/* ===========================================
   13. Feature cards
   =========================================== */

/* --- Soft pink section background --- */
.feature_section {
    background-color: #fdf0f4 !important;
    overflow: hidden;
}

.feature_section .section_title .small_title {
    color: var(--brand-primary);
}

/* --- Paint splatter wrapper --- */
.feature_image_wrap {
    position: relative;
    z-index: 1;
}

/* --- Splatter images base --- */
.splatter {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Orange splatter — top-right */
.splatter_orange {
    width: 180px;
    height: auto;
    top: -20px;
    right: 0;
}

/* Cyan splatter — bottom-left */
.splatter_cyan {
    width: 160px;
    height: auto;
    bottom: -30px;
    left: 0;
}

/* Dark ink drops — full spread behind image */
.splatter_dark {
    width: 100%;
    height: auto;
    top: -20px;
    left: 0;
    opacity: 0.55;
}

/* Remove the original solid border frame */
.feature_section .feature_image_1:before {
    display: none;
}

/* Ensure the image sits above splatters */
.feature_image_wrap .feature_image_1 {
    position: relative;
    z-index: 2;
}

/* --- Icon sizing for SVG icons --- */
.feature_primary .item_icon.item_icon_img {
    background: none !important;
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    line-height: normal;
    float: none !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
}

.feature_primary .item_icon.item_icon_img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* --- Wider cards + bolder, bigger text --- */
.feature_section .feature_primary {
    max-width: none;
}

.feature_section .feature_primary .item_content {
    display: block;
}

.feature_section .feature_primary .item_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #222222;
    white-space: nowrap;
}

.feature_section .feature_primary p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 16px;
}

.feature_section .feature_primary .text_btn span {
    font-size: 13px;
    font-weight: 600;
}

/* --- Old color classes (keep for fallback) --- */
.feature_primary .item_icon.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.feature_primary .item_icon.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.feature_primary .item_icon.bg_default_blue {
    background-color: var(--brand-dark) !important;
}

.feature_primary .item_icon.bg_default_pink {
    background-color: var(--brand-warm) !important;
}

.feature_primary .text_btn:hover {
    color: var(--brand-primary);
}

.feature_card .item_content .item_type {
    color: var(--brand-primary);
}


/* ===========================================
   14. Service cards
   =========================================== */

.service_boxed.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.service_boxed.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.service_boxed.bg_default_blue {
    background-color: var(--brand-dark) !important;
}

.service_boxed.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.service_boxed.bg_default_past {
    background-color: var(--brand-warm) !important;
}


/* ===========================================
   15. CTA sections
   =========================================== */

.cta_section.bg_default_blue {
    background-color: var(--brand-dark) !important;
}

/* More generous vertical spacing */
.cta_section.sec_ptb_130 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Contact Us button — blue style instead of dark/black border */
.cta_section .custom_btn.btn_border.border_white {
    border-color: var(--brand-secondary) !important;
    color: var(--brand-secondary) !important;
    margin-left: 20px;
}

.cta_section .custom_btn.btn_border.border_white:before {
    background: var(--brand-secondary) !important;
}

.cta_section .custom_btn.btn_border.border_white:hover {
    color: #ffffff !important;
}

.cta_section .custom_btn.btn_border.border_white span {
    background-color: var(--brand-secondary) !important;
    color: #ffffff !important;
}

.cta_section .custom_btn.btn_border.border_white span.bg_white {
    background-color: var(--brand-secondary) !important;
}

/* Button spacing */
.cta_section .custom_btn+.custom_btn {
    margin-top: 15px;
}


/* ===========================================
   16. Fun facts / counters
   =========================================== */

.funfact_item .item_icon span.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.funfact_item .item_icon span.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.funfact_item .item_icon span.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.funfact_item .item_icon span.bg_default_purple {
    background-color: var(--brand-primary) !important;
}


/* ===========================================
   17. Portfolio / gallery plus overlay
   =========================================== */

.portfolio_fullimage .plus_effect:before,
.portfolio_fullimage .plus_effect:after {
    background-color: var(--brand-primary);
}

/* Gallery CTA button spacing */
.portfolio_section .text-center.mt_50 {
    margin-top: 80px;
}


/* ===========================================
   18. Testimonials
   =========================================== */

.testimonial_primary .quote_icon {
    color: var(--brand-secondary);
}

/* Initials avatar for testimonials */
.hero_thumbnail.hero_initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-warm));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}


/* ===========================================
   19. Pricing plans
   =========================================== */

.pricing_plan .item_header .sub_title {
    color: var(--brand-primary);
}

.pricing_plan .pricing_text {
    color: var(--brand-primary);
}

.pricing_plan .custom_btn {
    background-color: var(--brand-primary);
}


/* ===========================================
   20. Blog cards
   =========================================== */

.blog_grid_1 .item_title a:hover,
.blog_fullimage .item_title a:hover,
.blog_fullimage_2 .item_title a:hover,
.blog_standard .item_title a:hover,
.small_blog .item_title a:hover {
    color: var(--brand-primary);
}

.post_meta li a:hover {
    color: var(--brand-primary);
}


/* ===========================================
   21. Footer
   =========================================== */

.footer_section.bg_default_blue {
    background-color: #060606 !important;
}

.footer_video_area video {
    filter: contrast(1.4) brightness(0.95);
}

.footer_section .footer_widget_title {
    color: #fff;
}

.footer_section .footer_widget_title:before {
    background-color: var(--brand-primary);
}

.footer_useful_links li a:hover {
    color: var(--brand-secondary);
}

.footer_contact_info .item_icon.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.footer_contact_info .item_icon.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.footer_contact_info .item_icon.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}

.footer_newsletter_boxed {
    border-color: rgba(0, 178, 255, 0.15);
}

.footer_bottom_boxed {
    position: relative;
    border: none !important;
    border-radius: 16px;
    padding: 25px 50px;
    background: linear-gradient(0deg, #0B0B0B 0%, #1a0a2e 50%, #2d1054 99%) !important;
    overflow: hidden;
    z-index: 0;
}

.footer_bottom_boxed::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(90deg,
            var(--brand-primary) 0%,
            var(--brand-warm) 25%,
            var(--brand-accent) 50%,
            var(--brand-secondary) 75%,
            var(--brand-primary) 100%);
    background-size: 200% 100%;
    animation: shimmer-border 20s ease-in-out infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer-border {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.text-white .footer_bottom_boxed {
    background-color: transparent !important;
}

.footer_contact_form .submit_btn {
    background-color: var(--brand-primary);
}

.footer_contact_form .form_item input:focus {
    border-color: var(--brand-primary);
}

.footer_hotline i {
    color: var(--brand-secondary);
}

.footer_contact_bar a {
    font-weight: 700;
}

.footer_contact_bar a i {
    font-weight: 900;
}


/* ===========================================
   22. Contact info icons
   =========================================== */

.contact_info_item .item_icon.bg_default_orange {
    background-color: var(--brand-primary) !important;
}

.contact_info_item .item_icon.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}

.contact_info_item .item_icon.bg_default_lightblue {
    background-color: var(--brand-secondary) !important;
}


/* ===========================================
   23. Forms — focus & accents
   =========================================== */

.form_item input:focus,
.form_item textarea:focus,
.form_item select:focus {
    border-color: var(--brand-primary);
}

.form_item input[type="submit"],
.form_item button[type="submit"] {
    background-color: var(--brand-primary);
}

.search_body .form_item button {
    color: var(--brand-primary);
}

/* Nice-select focus */
.nice-select:focus,
.nice-select.open {
    border-color: var(--brand-primary);
}


/* ===========================================
   24. Alerts
   =========================================== */

/* Restore Font Awesome on <i> tags — style.css sets all i { font-family: Hind } */
i.fal {
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}

i.far, i.fas, i.fab, i.fad,
i[class^="fa-"], i[class*=" fa-"] {
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal;
    line-height: 1;
}

.alert--notice {
    background: #eaf8ff;
    border: 1px solid var(--brand-secondary);
    color: #145a7a;
}

.alert--error {
    background: #fef2f2;
    border: 1px solid var(--brand-danger);
    color: #7f1d1d;
}

.auth-flash {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auth-flash i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 18px;
}

.auth-flash--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-flash--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.site-flash {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
}

.site-flash i {
    margin-top: 0.15em;
    flex-shrink: 0;
}

.site-flash--notice {
    background: #eaf8ff;
    border: 1px solid var(--brand-secondary);
    color: #145a7a;
}

.site-flash--alert {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.site-flash-toast {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10050;
    width: min(520px, calc(100% - 2rem));
    pointer-events: none;
}

.site-flash-toast .site-flash {
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(11, 11, 11, 0.16);
}

.contact-form-flash {
    margin-bottom: 1.25rem;
}

/* ===========================================
   Contact page
   =========================================== */

body.page-contact {
    font-family: var(--font-display);
    background: #0B0B0B;
}

.contact-page {
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    background:
        linear-gradient(160deg, #0B0B0B 0%, #1a0a2e 48%, #2d1054 100%);
    color: #fff;
    min-height: calc(100vh - 80px);
}

.contact-page__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 15% 20%, rgba(255, 45, 154, 0.22), transparent 70%),
        radial-gradient(ellipse 45% 35% at 90% 70%, rgba(0, 178, 255, 0.16), transparent 70%);
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

.contact-page__eyebrow {
    margin: 0 0 16px;
    color: var(--brand-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #fff;
    max-width: 11ch;
}

.contact-page__accent {
    background: linear-gradient(105deg, var(--brand-primary) 0%, var(--brand-warm) 50%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-page__lead {
    margin: 0 0 40px;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-page__details {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 26rem;
}

.contact-page__details li {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page__details li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page__label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page__details a,
.contact-page__details span:not(.contact-page__label) {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page__details a:hover {
    color: var(--brand-secondary);
}

.contact-page__form {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 22px;
    padding: 34px 34px 36px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 45, 154, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
}

.contact-page__form::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 45, 154, 0.55) 0%,
            rgba(255, 138, 0, 0.25) 35%,
            rgba(0, 178, 255, 0.45) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.contact-page__form > * {
    position: relative;
    z-index: 1;
}

.contact-page__form-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-page__form-eyebrow {
    margin: 0 0 8px;
    color: var(--brand-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page__form-title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
    color: #fff;
}

.contact-page__form-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    max-width: 34ch;
}

.contact-page__form .form_item {
    margin-bottom: 20px;
}

.contact-page__form .input_title {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.contact-page__field {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page__field > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: color 0.2s ease;
}

.contact-page__field--textarea > i {
    top: 18px;
    transform: none;
}

.contact-page__form input,
.contact-page__form textarea {
    width: 100%;
    background: rgba(11, 11, 11, 0.52);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form input::placeholder,
.contact-page__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.contact-page__form input {
    height: 56px;
    padding: 0 16px 0 44px;
}

.contact-page__form textarea {
    min-height: 140px;
    padding: 16px 18px;
    resize: vertical;
    line-height: 1.55;
}

.contact-page__field:focus-within > i {
    color: var(--brand-primary);
}

.contact-page__form input:focus,
.contact-page__form textarea:focus {
    outline: none;
    background: rgba(11, 11, 11, 0.65);
    border-color: rgba(255, 45, 154, 0.65);
    box-shadow:
        0 0 0 4px rgba(255, 45, 154, 0.16),
        0 10px 28px rgba(255, 45, 154, 0.12);
}

.contact-page__form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.contact-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-height: 52px;
    padding: 10px 12px 10px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand-primary) 0%, var(--brand-warm) 55%, var(--brand-accent) 120%);
    background-size: 140% 100%;
    background-position: 0% 50%;
    box-shadow: 0 12px 28px rgba(255, 45, 154, 0.32);
    color: #fff !important;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.35s ease;
}

.contact-page__submit:before {
    display: none !important;
}

.contact-page__submit span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    float: none;
    width: 34px !important;
    height: 34px !important;
    margin-left: 14px !important;
    margin-right: 0 !important;
    line-height: 1 !important;
    border-radius: 50%;
    background: rgba(11, 11, 11, 0.28) !important;
    color: #fff !important;
    font-size: 12px;
}

.contact-page__submit:hover {
    transform: translateY(-2px);
    background-position: 100% 50%;
    box-shadow: 0 16px 36px rgba(255, 45, 154, 0.42);
    color: #fff !important;
}

.contact-page__submit:hover span {
    background: rgba(11, 11, 11, 0.4) !important;
    color: #fff !important;
}

.contact-page__form .contact-form-flash {
    margin-bottom: 1.1rem;
}

.contact-page__form .site-flash--notice {
    background: rgba(0, 178, 255, 0.12);
    border-color: rgba(0, 178, 255, 0.45);
    color: #b8ecff;
}

.contact-page__form .site-flash--alert {
    background: rgba(255, 212, 0, 0.12);
    border-color: rgba(255, 212, 0, 0.4);
    color: #ffe789;
}

@media (max-width: 991px) {
    .contact-page {
        padding: 140px 0 72px;
    }

    .contact-page__copy {
        margin-bottom: 36px;
    }

    .contact-page__title {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .contact-page {
        padding: 120px 0 56px;
    }

    .contact-page__form {
        padding: 26px 20px 28px;
    }

    .contact-page__details li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .contact-page__form-actions {
        justify-content: flex-end;
    }
}


/* ===========================================
   25. Breadcrumb
   =========================================== */

.breadcrumb_section {
    background-color: var(--brand-dark);
    min-height: 255px;
    padding: 155px 0 55px;
}

.breadcrumb_section .breadcrumb_nav {
    display: none;
}

.breadcrumb_section .breadcrumb>li a:hover {
    color: var(--brand-secondary);
}

.breadcrumb_section .breadcrumb>li.active {
    color: var(--brand-secondary);
}

/* Video breadcrumb background */
.breadcrumb_section.breadcrumb_video {
    position: relative;
    overflow: hidden;
}

.breadcrumb_video_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.breadcrumb_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.5);
    z-index: 1;
}

.breadcrumb_section.breadcrumb_video .container {
    position: relative;
    z-index: 2;
}


/* ===========================================
   26. Circle check info list
   =========================================== */

.circle_check_info_list li:before {
    color: var(--brand-primary);
}


/* ===========================================
   27. FAQ accordion
   =========================================== */

.description_tabnav a:hover,
.description_tabnav a.active {
    color: var(--brand-primary);
}

.description_tabnav a:hover:before,
.description_tabnav a.active:before {
    background: var(--brand-primary);
}


/* ===========================================
   28. Brand section
   =========================================== */

.brand_section .brand_logo.bg_default_yellow {
    background-color: var(--brand-secondary) !important;
}


/* ===========================================
   29. Circle social links
   =========================================== */

.social_title {
    color: #fce44c !important;
}

.circle_social_links a {
    border: solid 1px #fce44c;
}

.footer_bottom_boxed .circle_social_links a {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid #fce44c;
    color: #fff !important;
    transition: all 0.3s ease;
}

.footer_bottom_boxed .circle_social_links .bg_facebook:hover {
    background-color: #1877F2 !important;
    border-color: #1877F2;
}

.footer_bottom_boxed .circle_social_links .bg_twitter:hover {
    background-color: #1DA1F2 !important;
    border-color: #1DA1F2;
}

.footer_bottom_boxed .circle_social_links .bg_youtube:hover {
    background-color: #FF0000 !important;
    border-color: #FF0000;
}

.footer_bottom_boxed .circle_social_links .bg_linkedin:hover {
    background-color: #0A66C2 !important;
    border-color: #0A66C2;
}

.footer_bottom_boxed .circle_social_links .bg_instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: #dc2743;
}

.circle_social_links a:hover {
    background-color: var(--brand-primary) !important;
}


/* ===========================================
   30. Whoweare / Who We Are section
   =========================================== */

.whoweare_section.bg_default_yellow {
    background-color: var(--brand-dark) !important;
}

.whoweare_section .whoweare_content {
    padding: 60px 40px 60px 60px;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: 100%;
}

.whoweare_section .whoweare_content .section_title {
    margin-bottom: 30px;
}

.whoweare_section .whoweare_content .section_title .small_title {
    color: var(--brand-accent);
}

.whoweare_section .whoweare_content .section_title .big_title {
    color: #fff;
    -webkit-text-stroke: 0;
    text-stroke: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 42px;
    line-height: 1.15;
}

.whoweare_section .whoweare_content .section_title .biggest_title {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    text-stroke: 1px rgba(255, 255, 255, 0.06);
}

.whoweare_section .whoweare_about_content {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whoweare_section .whoweare_about_content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
}


/* ===========================================
   31. Cart sidebar (if used)
   =========================================== */

.cart_sidebar .close_btn:hover {
    color: var(--brand-primary);
}


/* ===========================================
   32. Orange shape decoration
   =========================================== */

.orange_shape {
    background-color: var(--brand-primary);
}


/* ===========================================
   33. Logo — 50% overlay below navbar
   =========================================== */

/* Let the logo overflow below the header bar when stuck */
.header_section .header_bottom {
    overflow: visible;
    position: relative;
    z-index: 1000;
}

/* Default state: logo sits normally in the nav */
.header_section .header_bottom .brand_logo {
    position: relative;
    z-index: 1001;
    max-width: 100%;
}

.header_section .header_bottom .brand_logo>a {
    display: block;
    max-width: 100%;
}

.header_section .header_bottom .brand_logo>a>img {
    height: 88px;
    width: auto;
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
    transition: height 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* Homepage only: slightly larger logo; still contained so nav stays clickable */
body.page-home .header_section .header_bottom .brand_logo>a>img {
    height: 100px;
    max-height: 100px;
}

/* Stuck state: keep logo in-flow (no absolute overlay over Contact / content) */
.header_section.stuck .header_bottom .brand_logo {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
}

.header_section.stuck .header_bottom .brand_logo>a>img {
    height: 64px;
    max-height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Extra safety on contact + other solid pages: never let logo spill into content */
body.page-contact .header_section .header_bottom .brand_logo>a>img,
body.page-about .header_section .header_bottom .brand_logo>a>img {
    height: 64px;
    max-height: 64px;
}

@media (max-width: 991px) {
    .header_section .header_bottom .brand_logo>a>img,
    body.page-home .header_section .header_bottom .brand_logo>a>img,
    .header_section.header_solid .header_bottom .brand_logo>a>img,
    .header_section.stuck .header_bottom .brand_logo>a>img {
        height: 52px;
        max-height: 52px;
    }
}

/* Ensure content below the header isn't clipped by the overflowing logo */
.header_section+main,
.header_section~main {
    position: relative;
    z-index: 1;
}


/* ===========================================
   31. Bag Design Editor
   =========================================== */

.bag_editor_section {
    background: #111;
    color: #f5f5f5;
    padding: 40px 0 60px;
    min-height: 100vh;
}

.bag_editor_section .section_title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 4px;
}

.bag_editor_section .section_subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* --- Controls sidebar --- */
.editor_sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.editor_control_group {
    margin-bottom: 18px;
}

.editor_label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.editor_select {
    width: 100%;
    background: #1a1a1a;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
    appearance: auto;
}

.editor_select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

/* Color swatches */
.color_swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color_swatches .swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.color_swatches .swatch:hover {
    transform: scale(1.12);
}

.color_swatches .swatch.active {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 2px var(--brand-accent), inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Holographic swatch */
.color_swatches .swatch[data-color="holographic"] {
    background: linear-gradient(135deg, #f0c0ff, #c0f0ff, #fffba0, #f0c0ff) !important;
}

/* Upload area */
.upload_area {
    border: 2px dashed rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.upload_area:hover,
.upload_area.dragover {
    border-color: var(--brand-primary);
    background: rgba(255, 45, 154, 0.05);
}

.upload_area i {
    font-size: 1.6rem;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

.upload_area p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    word-break: break-all;
}

/* Scale slider */
.editor_range {
    width: 100%;
    accent-color: var(--brand-primary);
}

/* Text input */
.editor_text_input {
    width: 100%;
    background: #1a1a1a;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.editor_text_input:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.editor_text_input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Small buttons */
.editor_btn_sm {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.15s;
}

.editor_btn_sm:hover {
    opacity: 0.85;
}

.editor_btn_sm.btn_center {
    background: var(--brand-secondary);
    color: #fff;
}

.editor_btn_sm.btn_remove {
    background: var(--brand-danger);
    color: #fff;
}

.editor_btn_sm.btn_add_text {
    background: var(--brand-accent);
    color: #111;
}

.editor_divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

/* --- Canvas area --- */
.editor_canvas_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.canvas_container_wrap {
    position: relative;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    display: inline-block;
}

.canvas_hint {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

/* Fabric.js canvas overrides */
.canvas_container_wrap .canvas-container {
    border-radius: 4px;
}

/* --- Summary sidebar --- */
.editor_summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.editor_summary h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
    color: #fff;
}

.summary_item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.summary_item strong {
    color: #fff;
    font-weight: 600;
}

.quantity_select {
    width: 100%;
    background: #1a1a1a;
    color: #eee;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
    margin-top: 8px;
}

.quantity_select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.editor_summary .custom_btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.download_btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #eee;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    margin-top: 10px;
}

.download_btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .bag_editor_section {
        padding: 24px 0 40px;
    }

    .editor_canvas_wrap {
        min-height: 400px;
        margin: 24px 0;
    }

    .editor_sidebar,
    .editor_summary {
        margin-bottom: 20px;
    }
}

/* --- Quote catalog product cards (home, services, order) --- */
.mvp-products-lead {
    margin: 16px auto 0;
    max-width: 42ch;
    color: #666;
    line-height: 1.6;
    font-size: 17px;
}

.mvp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.quote-catalog-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(17, 17, 17, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.quote-catalog-card--link {
    color: inherit;
    text-decoration: none;
}

a.quote-catalog-card--link:hover,
a.quote-catalog-card--link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(236, 22, 143, 0.22);
    outline: none;
}

.quote-catalog-card-media {
    position: relative;
    background:
        radial-gradient(circle at 30% 20%, rgba(236, 22, 143, 0.18), transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 255, 0.16), transparent 40%),
        #111;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.quote-catalog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

a.quote-catalog-card--link:hover .quote-catalog-card-image {
    transform: scale(1.04);
}

.quote-catalog-card-category {
    display: block;
    margin: 0;
    color: #888;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quote-catalog-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-catalog-card-body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.quote-catalog-card-body p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
    flex: 1;
}

.quote-catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.quote-catalog-price {
    display: block;
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #111;
}

.quote-catalog-price--quote {
    color: #ec168f;
}

.quote-catalog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
}

.quote-catalog-card-cta i {
    transition: transform 0.2s ease;
}

a.quote-catalog-card--link:hover .quote-catalog-card-cta i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .mvp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 620px) {
    .mvp-product-grid {
        grid-template-columns: 1fr;
    }

    .quote-catalog-card-media {
        aspect-ratio: 16 / 10;
    }
}

/* --- Why PrintFetti --- */
.why-printfetti-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 45, 154, 0.08), transparent 34%),
        radial-gradient(circle at 88% 70%, rgba(0, 178, 255, 0.08), transparent 32%),
        #f7f7f8;
    color: #111;
}

.why-printfetti-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.why-printfetti-title {
    margin: 10px 0 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #111;
}

.why-printfetti-lead {
    margin: 18px 0 0;
    max-width: 38ch;
    color: #555;
    font-size: 17px;
    line-height: 1.65;
}

.why-printfetti-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.why-printfetti-points > li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 18px 18px 16px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.why-printfetti-icon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 154, 0.1);
    color: var(--brand-primary);
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
}

.why-printfetti-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: inherit;
    text-align: center;
}

.why-printfetti-icon i::before {
    display: block;
    line-height: 1;
}

.why-printfetti-points strong {
    display: block;
    margin: 2px 0 4px;
    font-size: 16px;
    color: #111;
    letter-spacing: -0.01em;
}

.why-printfetti-points span {
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .why-printfetti-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .why-printfetti-lead {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .why-printfetti-points > li {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .why-printfetti-icon {
        width: 40px;
        height: 40px;
    }
}

/* --- Packaging transformation (before / after) --- */
.packaging-transform-row {
    row-gap: 24px;
}

.packaging-transform-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.packaging-transform-media {
    aspect-ratio: 1024 / 682;
    background: #08040e;
    overflow: hidden;
}

.packaging-transform-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.packaging-transform-copy {
    padding: 24px;
}

.packaging-transform-copy h3 {
    margin: 0 0 8px;
}

.packaging-transform-copy p {
    margin: 0;
    color: #666;
    line-height: 1.55;
}

/* --- Services page: main categories only --- */
.services-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.services-category-card .quote-catalog-card-media {
    aspect-ratio: 16 / 10;
}

.services-category-card .quote-catalog-card-body h3 {
    font-size: 24px;
}

.services-category-card .quote-catalog-card-body p {
    -webkit-line-clamp: 3;
    font-size: 15px;
}

.services-page-cta {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.services-page-cta h3 {
    margin: 0 0 10px;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.services-page-cta p {
    margin: 0 auto 24px;
    max-width: 42ch;
    color: #666;
    line-height: 1.6;
}

.services-disclaimer {
    margin: 24px auto 0 !important;
    max-width: 720px;
    font-size: 13px !important;
    color: #999 !important;
    line-height: 1.6;
}

@media (max-width: 720px) {
    .services-category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* ===========================================
   About page — brand story refresh
   =========================================== */

body.page-about {
    background: #fff;
    color: var(--brand-dark);
    font-family: var(--font-display);
}

body.page-about .about-page {
    overflow: hidden;
}

.iconoir-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    overflow: visible;
    vertical-align: -.125em;
}

body.page-about .about-page__hero {
    position: relative;
    overflow: hidden;
    padding: 178px 0 112px;
    color: #fff;
    background: linear-gradient(138deg, #0b0b0b 0%, #170b27 54%, #101c38 100%);
}

.about-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .35;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 84%);
}

.about-page__hero-glow {
    position: absolute;
    top: -35%;
    right: -10%;
    width: 65%;
    height: 120%;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(0, 178, 255, .2), transparent 64%);
}

.about-page__hero .container,
.about-page__story .container,
.about-page__standards .container,
.about-page__audience .container,
.about-page__cta .container {
    position: relative;
    z-index: 1;
}

.about-page__hero-row,
.about-page__story-row,
.about-page__audience-row {
    row-gap: 56px;
}

.about-page__hero-copy {
    max-width: 650px;
}

.about-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--brand-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-page__eyebrow--dark {
    color: #6a4ac7;
}

.about-page__hero-title {
    max-width: 11ch;
    margin: 0 0 22px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(44px, 5.2vw, 74px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .99;
}

.about-page__hero-title span {
    background: linear-gradient(105deg, var(--brand-primary), var(--brand-warm) 52%, var(--brand-accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.about-page__hero-lead {
    max-width: 36rem;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .77);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.about-page__actions,
.about-page__cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
}

.about-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 8px 11px 8px 22px;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background-position .3s ease, color .2s ease;
}

.about-page__button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 16px;
    border-radius: 50%;
}

.about-page__button span .iconoir-icon {
    width: 18px;
    height: 18px;
}

.about-page__button--primary {
    color: #fff !important;
    background: linear-gradient(120deg, var(--brand-primary), var(--brand-warm), var(--brand-accent));
    background-size: 160% 100%;
    box-shadow: 0 14px 30px rgba(255, 45, 154, .25);
}

.about-page__button--primary span {
    color: #fff;
    background: rgba(11, 11, 11, .28);
}

.about-page__button--primary:hover,
.about-page__button--primary:focus-visible {
    color: #fff !important;
    background-position: 100% 50%;
    box-shadow: 0 18px 38px rgba(255, 45, 154, .38);
    transform: translateY(-2px);
}

.about-page__text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.about-page__text-link .iconoir-icon {
    width: 20px;
    height: 20px;
    color: var(--brand-secondary);
    transition: transform .2s ease;
}

.about-page__text-link:hover,
.about-page__text-link:focus-visible {
    color: #fff;
}

.about-page__text-link:hover .iconoir-icon,
.about-page__text-link:focus-visible .iconoir-icon {
    transform: translateX(4px);
}

.about-page__proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.about-page__proof-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    font-weight: 600;
}

.about-page__proof-list .iconoir-icon {
    width: 17px;
    height: 17px;
    color: var(--brand-secondary);
}

.about-page__hero-media {
    position: relative;
    max-width: 620px;
    margin-left: auto;
    padding: 15px 12px 30px 18px;
}

.about-page__hero-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 27px;
    background: #08070d;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .44), 0 0 0 8px rgba(255, 255, 255, .035);
}

.about-page__hero-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 45, 154, .14), transparent 46%, rgba(0, 178, 255, .18));
}

.about-page__hero-frame img,
.about-page__story-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__media-note {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff;
    background: rgba(11, 11, 11, .77);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.about-page__media-note .iconoir-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    padding: 7px;
    border-radius: 10px;
    color: #fff;
    background: var(--brand-primary);
}

.about-page__media-note strong,
.about-page__media-note small {
    display: block;
}

.about-page__media-note strong {
    font-size: 13px;
    line-height: 1.3;
}

.about-page__media-note small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .02em;
}

.about-page__media-note--top {
    top: 0;
    right: -4px;
}

.about-page__media-note--bottom {
    bottom: 2px;
    left: 0;
}

.about-page__media-note--bottom .iconoir-icon {
    background: var(--brand-secondary);
}

.about-page__story,
.about-page__audience {
    padding: 104px 0;
    background: #fff;
}

.about-page__section-copy {
    max-width: 490px;
}

.about-page__section-title {
    max-width: 15ch;
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.06;
}

.about-page__section-lead,
.about-page__section-heading > p:last-child {
    margin: 0;
    color: #60616a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.about-page__check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.about-page__check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #25242c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.about-page__check-list .iconoir-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    margin-top: -2px;
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    background: var(--brand-primary);
}

.about-page__story-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    margin: 0;
    border-radius: 24px;
    background: #09070d;
    box-shadow: 0 20px 55px rgba(11, 11, 11, .13);
}

.about-page__story-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 11, .72));
}

.about-page__story-media figcaption {
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 18px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.about-page__standards {
    padding: 104px 0 112px;
    color: #fff;
    background: #f6f6f8;
}

.about-page__section-heading {
    max-width: 650px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-page__section-heading .about-page__eyebrow {
    color: #6a4ac7;
}

.about-page__section-heading .about-page__section-title {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.about-page__standard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-page__standard-card {
    min-height: 250px;
    padding: 30px 28px 32px;
    border: 1px solid rgba(11, 11, 11, .08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(11, 11, 11, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-page__standard-card:hover {
    box-shadow: 0 22px 46px rgba(11, 11, 11, .11);
    transform: translateY(-5px);
}

.about-page__standard-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 45, 154, .16);
    border-radius: 16px;
    color: #c81d76;
    background: #fff1f7;
    font-size: 20px;
}

.about-page__standard-icon .iconoir-icon {
    width: 24px;
    height: 24px;
}

.about-page__standard-card:nth-child(2) .about-page__standard-icon {
    border-color: rgba(0, 178, 255, .18);
    color: #007bad;
    background: #edf9ff;
}

.about-page__standard-card:nth-child(3) .about-page__standard-icon {
    border-color: rgba(255, 138, 0, .2);
    color: #ad5b00;
    background: #fff6eb;
}

.about-page__standard-card h3 {
    margin: 0 0 11px;
    color: var(--brand-dark);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.about-page__standard-card p {
    margin: 0;
    color: #65656c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.about-page__minimum {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 420px;
    margin-top: 30px;
    padding: 17px 18px;
    border-left: 3px solid var(--brand-primary);
    border-radius: 0 14px 14px 0;
    background: #f5f1ff;
}

.about-page__minimum strong,
.about-page__minimum small {
    display: block;
}

.about-page__minimum strong {
    color: var(--brand-dark);
    font-size: 13px;
    line-height: 1.4;
}

.about-page__minimum small {
    margin-top: 5px;
    color: #666575;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.about-page__audience {
    background: #fff;
}

.about-page__audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-page__audience-grid li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 62px;
    padding: 13px 15px;
    border: 1px solid #e8e7ed;
    border-radius: 14px;
    color: #2a2931;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.about-page__audience-grid li:hover {
    border-color: rgba(255, 45, 154, .35);
    box-shadow: 0 12px 26px rgba(11, 11, 11, .07);
    transform: translateY(-2px);
}

.about-page__audience-grid li::before {
    width: 16px;
    height: 2px;
    flex: 0 0 16px;
    border-radius: 999px;
    background: var(--brand-dark);
    content: "";
}

.about-page__audience-grid li:nth-child(3n)::before {
    background: var(--brand-primary);
}

.about-page__audience-grid li:nth-child(3n + 1)::before {
    background: var(--brand-secondary);
}

.about-page__cta {
    padding: 0 0 112px;
    background: #fff;
}

.about-page__cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    overflow: hidden;
    padding: 52px 58px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(130deg, #0b0b0b, #21103d 62%, #111c37);
    box-shadow: 0 24px 60px rgba(11, 11, 11, .18);
}

.about-page__cta-glow {
    position: absolute;
    top: -100px;
    right: -40px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 45, 154, .36), transparent 66%);
}

.about-page__cta-copy,
.about-page__cta-actions {
    position: relative;
    z-index: 1;
}

.about-page__cta-copy {
    max-width: 600px;
}

.about-page__cta-copy h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.about-page__cta-copy p:last-child {
    max-width: 38rem;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.about-page__button--quiet {
    min-height: 44px;
    padding: 8px 0;
    color: rgba(255, 255, 255, .78) !important;
    background: transparent;
}

.about-page__button--quiet:hover,
.about-page__button--quiet:focus-visible {
    color: #fff !important;
    transform: translateX(3px);
}

.about-page__button--quiet .iconoir-icon {
    width: 18px;
    height: 18px;
    margin-left: 9px;
    color: var(--brand-secondary);
}

body.page-about a:focus-visible,
body.page-about button:focus-visible {
    outline: 3px solid rgba(0, 178, 255, .8);
    outline-offset: 4px;
}

@media (max-width: 991px) {
    body.page-about .about-page__hero {
        padding: 148px 0 88px;
    }

    .about-page__hero-copy,
    .about-page__section-copy {
        max-width: none;
    }

    .about-page__hero-media {
        max-width: 680px;
        margin: 0 auto;
    }

    .about-page__story,
    .about-page__audience {
        padding: 82px 0;
    }

    .about-page__story-row,
    .about-page__audience-row {
        row-gap: 40px;
    }

    .about-page__standard-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-page__standard-card {
        padding: 24px 20px 26px;
    }

    .about-page__cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 42px 38px;
    }
}

@media (max-width: 620px) {
    body.page-about .about-page__hero {
        padding: 124px 0 68px;
    }

    .about-page__hero-title {
        max-width: 12ch;
        font-size: clamp(40px, 12vw, 58px);
    }

    .about-page__hero-lead {
        font-size: 15px;
    }

    .about-page__hero-media {
        padding: 8px 0 28px;
    }

    .about-page__media-note {
        min-width: 0;
        padding: 10px 12px;
    }

    .about-page__media-note--top {
        right: -5px;
    }

    .about-page__media-note--bottom {
        left: -5px;
    }

    .about-page__media-note small {
        font-size: 9px;
    }

    .about-page__story,
    .about-page__audience {
        padding: 68px 0;
    }

    .about-page__section-title {
        max-width: none;
        font-size: 36px;
    }

    .about-page__standards {
        padding: 70px 0 76px;
    }

    .about-page__section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .about-page__standard-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-page__standard-card {
        min-height: 0;
    }

    .about-page__audience-grid {
        gap: 10px;
    }

    .about-page__audience-grid li {
        min-height: 58px;
        padding: 11px;
        font-size: 12px;
    }

    .about-page__cta {
        padding-bottom: 72px;
    }

    .about-page__cta-card {
        padding: 34px 24px;
        border-radius: 20px;
    }

    .about-page__cta-actions,
    .about-page__cta-actions .about-page__button--primary {
        width: 100%;
    }

    .about-page__cta-actions .about-page__button--primary {
        max-width: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-about .wow,
    body.page-about .about-page__standard-card,
    body.page-about .about-page__audience-grid li,
    body.page-about .about-page__button,
    body.page-about .about-page__text-link .iconoir-icon {
        animation: none !important;
        transition: none !important;
    }
}


/* ============================================================
   GLOBAL MOBILE / TABLET PASS (PrintFetti)
   Base theme's _responsive.scss rules for header_default were not
   fully present in compiled style.css — re-assert them here so
   logo never covers Contact, hamburger works, order CTA stays usable.
   ============================================================ */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly defaults */
@media (max-width: 991px) {
    /* --- Header: compact mobile chrome --- */
    .header_section.header_default .header_top {
        display: none !important;
    }

    .header_section.header_default .header_bottom .main_menu,
    .header_section.header_default .header_bottom .header_btns_group {
        display: none !important;
    }

    .header_section .mobilemenu_btns_group {
        display: inline-flex !important;
        align-items: center;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header_section .mobilemenu_btns_group button {
        min-width: 44px;
        min-height: 44px;
        color: #fff;
        background: transparent;
        border: 0;
        font-size: 22px;
    }

    .header_section .header_bottom .brand_logo {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        position: relative;
        z-index: 2;
        overflow: visible;
    }

    .header_section .header_bottom .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .header_section .header_bottom {
        padding: 10px 0;
        min-height: 64px;
    }

    .header_section.header_solid {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 1040;
    }

    .header_section .header_bottom .brand_logo > a > img,
    body.page-home .header_section .header_bottom .brand_logo > a > img,
    .header_section.header_solid .header_bottom .brand_logo > a > img,
    .header_section.stuck .header_bottom .brand_logo > a > img,
    body.page-contact .header_section .header_bottom .brand_logo > a > img,
    body.page-about .header_section .header_bottom .brand_logo > a > img {
        height: 48px !important;
        max-height: 48px !important;
        width: auto;
        max-width: min(52vw, 180px);
        object-fit: contain;
    }

    /* Mobile drawer: room for Order CTA */
    .sidebar_mobile_menu {
        width: min(88vw, 320px);
        max-width: 100%;
        z-index: 1100;
    }

    .sidebar_mobile_menu .mobile_menu_list > ul > li > a {
        font-size: 16px;
        padding: 14px 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .sidebar-menu-wrapper .overlay {
        z-index: 1090;
    }

    /* Footer */
    .footer_section .footer_contact_bar ul {
        flex-direction: column;
        gap: 12px !important;
        align-items: center;
    }

    .footer_section .footer_contact_bar .custom_btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
        padding: 12px 18px;
    }

    .footer_section .footer_video_area video,
    .footer_section .footer_video_area img {
        max-height: 180px !important;
        width: auto;
        max-width: 90%;
    }

    .footer_bottom_boxed .row {
        row-gap: 16px;
        text-align: center;
    }

    .footer_bottom_boxed .ul_li_right {
        justify-content: center !important;
    }

    .footer_bottom_boxed .copyright_text {
        font-size: 13px;
        line-height: 1.45;
    }

    /* Contact / forms — full-width controls, no horizontal scroll */
    .contact_section input,
    .contact_section select,
    .contact_section textarea,
    .contact_section .form_item input,
    .contact_section .form_item textarea {
        font-size: 16px !important; /* iOS no-zoom */
        max-width: 100%;
    }

    .contact_section .custom_btn,
    .contact_section button[type="submit"] {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
    }

    /* Breadcrumbs / heroes that sit under fixed header */
    .breadcrumb_section {
        padding-top: 100px !important;
        min-height: auto !important;
        padding-bottom: 28px !important;
    }

    .breadcrumb_section .page_title,
    .breadcrumb_section h1 {
        font-size: clamp(28px, 8vw, 40px) !important;
        line-height: 1.15 !important;
        word-break: break-word;
    }

    /* Services / catalog grids already have rules; tighten cards */
    .service_section .row > [class*="col-"],
    .pricing_section .row > [class*="col-"] {
        margin-bottom: 16px;
    }

    /* Prevent horizontal overflow from theme decorations */
    body {
        overflow-x: hidden;
    }

    .container,
    .maxw_1420 {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Flash toasts */
    .site-flash-toast {
        left: 12px !important;
        right: 12px !important;
        max-width: none !important;
    }

    /* Order confirmation page (inline styles are mostly desktop-first) */
    body.page-order_confirmation section.contact_section > .container,
    body.page-order_confirmation .contact_section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Home hero buttons full width on tablet-ish */
    .home_two_banner .hero_btn_row,
    .home_two_banner .banner_btns {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .home_two_banner .custom_btn {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .header_section .header_bottom .brand_logo > a > img,
    body.page-home .header_section .header_bottom .brand_logo > a > img {
        height: 44px !important;
        max-height: 44px !important;
        max-width: min(48vw, 150px);
    }

    /* Hide search on very small screens — menu is enough */
    .header_section .mobilemenu_btns_group .search_btn {
        display: none;
    }

    .home_two_banner {
        padding-left: 4vw !important;
        padding-right: 4vw !important;
    }

    .home_two_banner .item_title {
        font-size: 30px !important;
        letter-spacing: -0.8px !important;
    }

    .home_two_banner .hero_feature_list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .whoweare_section .whoweare_content {
        padding: 36px 20px !important;
    }

    .whoweare_section .whoweare_content .section_title .big_title {
        font-size: 28px !important;
    }

    /* Room for Tidio bubble bottom-right */
    .footer_section {
        padding-bottom: 24px;
    }

    main {
        padding-bottom: 8px;
    }
}

/* Order confirmation: tighten card padding on phones */
@media (max-width: 620px) {
    body.page-order_confirmation .breadcrumb_section {
        padding: 100px 12px 20px !important;
    }

    body.page-order_confirmation .breadcrumb_section h1 {
        font-size: 22px !important;
    }

    body.page-order_confirmation .contact_section {
        padding: 28px 0 56px !important;
    }

    body.page-order_confirmation .contact_section [style*="padding:34px"],
    body.page-order_confirmation .contact_section [style*="padding:30px"] {
        padding: 18px 16px !important;
    }

    body.page-order_confirmation .contact_section h2 {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }
}
