/*==================================================
ARPIVA ENTERPRISE HEADER
==================================================*/

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:88px;
    background:rgba(248,251,255,.96);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(15,23,42,.08);
    box-shadow:0 8px 30px rgba(15,23,42,.05);
    z-index:9999;
    transition:.35s;
}

.site-header.scrolled{
    background:#fff;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
}


/*==================================================
CONTAINER
==================================================*/

.header-container{
    width:min(1400px,92%);
    margin:auto;
    height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}


/*==================================================
LOGO
==================================================*/

.header-logo{
    flex:0 0 210px;
}

.header-logo img{
    width:185px;
    height:auto;
    display:block;
}


/*==================================================
NAVIGATION
==================================================*/

.header-menu{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* TOP LEVEL MENU */

.header-menu > ul{
    display:flex;
    align-items:center;
    justify-content:center;
    list-style:none;
    margin:0;
    padding:0;
    gap:38px;
}

.header-menu > ul > li{
    position:relative;
}

.header-menu > ul > li > a{
    display:block;
    position:relative;
    color:#0F172A;
    font-size:15px;
    font-weight:600;
    padding:32px 0;
    transition:.3s;
}

.header-menu > ul > li:hover > a{
    color:#2F80ED;
}

.header-menu > ul > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:22px;
    width:0;
    height:2px;
    background:#FF9800;
    transition:.3s;
}

.header-menu > ul > li:hover > a::after{
    width:100%;
}


/*==================================================
DROPDOWN
==================================================*/

.header-menu .sub-menu{

    position:absolute;

    top:100%;

    left:0;

    min-width:260px;

    background:#fff;

    border-radius:14px;

    padding:10px 0;

    margin-top:0;

    list-style:none;

    box-shadow:0 20px 50px rgba(15,23,42,.12);

    display:block;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:.30s;

    z-index:9999;

}

.header-menu li:hover > .sub-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.header-menu .sub-menu li{

    display:block;

    width:100%;

}

.header-menu .sub-menu a{

    display:block;

    padding:12px 22px;

    color:#0F172A;

    font-size:14px;

    font-weight:500;

    white-space:nowrap;

    transition:.25s;

}

/* =========================================================
   SUBMENU HOVER
========================================================= */

.header-menu .sub-menu a {
    position: relative;
    display: block;
    padding: 12px 22px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: .25s ease;
}

/* Orange underline */

.header-menu .sub-menu a::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #FF9800;
    transition: .25s ease;
}

/* Hover */

.header-menu .sub-menu a:hover {
    background: #F5F8FD;
    color: #2F80ED;
}

.header-menu .sub-menu a:hover::after {
    width: calc(100% - 44px);
}

/* Second level support */

.header-menu .sub-menu .sub-menu{

    top:0;

    left:100%;

    margin-left:8px;

}


/*==================================================
BUTTON
==================================================*/

.header-action{
    flex:0 0 180px;
    display:flex;
    justify-content:flex-end;
}

.demo-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:170px;
    height:48px;
    border-radius:12px;
    background:linear-gradient(135deg,#FFB347,#FF8C00);
    color:#fff;
    font-size:15px;
    font-weight:700;
    box-shadow:0 10px 28px rgba(255,140,0,.30);
    transition:.35s;
}

.demo-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 42px rgba(255,140,0,.42);
}


/*==================================================
TABLET
==================================================*/

@media(max-width:1200px){

.header-menu > ul{
gap:24px;
}

.header-menu > ul > li > a{
font-size:14px;
}

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:991px){

.header-menu{
display:none;
}

.header-action{
display:none;
}

.header-container{
justify-content:space-between;
}

}
/*=========================================================
ABOUT COMPANY
=========================================================*/

.about-company{

    padding:110px 0;

    background:#ffffff;

}

.about-company-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-company-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:0 25px 60px rgba(10,30,80,.12);

}

.section-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:#EEF4FF;

    color:#1E63F0;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:22px;

    text-transform:uppercase;

}

.about-company-content h2{

    font-size:48px;

    font-weight:800;

    color:#081B4B;

    line-height:1.2;

    margin-bottom:28px;

}

.about-company-content p{

    font-size:18px;

    line-height:1.9;

    color:#5F6F8C;

    margin-bottom:22px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0 40px;

}

.about-features div{

    font-size:17px;

    color:#081B4B;

    font-weight:600;

}
.about-company .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:14px;

    background:#FF9F1C;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 18px 35px rgba(255,159,28,.30);

}

.about-company .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 45px rgba(255,159,28,.40);

}
/*==================================================
  ARPIVA RESPONSIVE MOBILE / TABLET HEADER
==================================================*/

/* Prevent background scrolling when mobile menu is open */

body.arpiva-menu-open {
    overflow: hidden;
}


/*==================================================
  MOBILE HAMBURGER BUTTON
==================================================*/

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle:hover {
    border-color: #2F80ED;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: #081B4B;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/*==================================================
  HAMBURGER → X ANIMATION
==================================================*/

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/*==================================================
  MOBILE OVERLAY
==================================================*/

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(4, 17, 45, 0.48);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

    z-index: 9997;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/*==================================================
  MOBILE MENU PANEL
==================================================*/

.mobile-menu-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: min(420px, 88vw);

    height: 100vh;
    height: 100dvh;

    background: #ffffff;

    box-shadow:
        -20px 0 60px rgba(15, 23, 42, 0.18);

    transform: translateX(105%);

    visibility: hidden;

    transition:
        transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
        visibility 0.42s ease;

    z-index: 10000;

    display: flex;
    flex-direction: column;

    overflow-y: auto;
}

.mobile-menu-panel.active {
    transform: translateX(0);
    visibility: visible;
}


/*==================================================
  MOBILE PANEL HEADER
==================================================*/

.mobile-menu-header {
    min-height: 88px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(15, 23, 42, 0.08);

    flex-shrink: 0;
}

.mobile-menu-brand a {
    display: block;
}

.mobile-menu-brand img {
    width: 150px;
    height: auto;
    display: block;
}


/*==================================================
  CLOSE BUTTON
==================================================*/

.mobile-menu-close {
    width: 42px;
    height: 42px;

    border: 1px solid #E5EAF2;
    border-radius: 11px;

    background: #F8FAFD;

    cursor: pointer;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.mobile-menu-close:hover {
    background: #EEF4FF;
    border-color: #C9D9F5;
    transform: rotate(90deg);
}

.mobile-menu-close span {
    position: absolute;

    width: 18px;
    height: 2px;

    background: #081B4B;

    border-radius: 4px;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}


/*==================================================
  MOBILE NAVIGATION
==================================================*/

.mobile-menu-navigation {
    flex: 1;

    padding: 18px 24px 30px;

    overflow-y: auto;
}

.mobile-menu-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.mobile-menu-list > li {
    position: relative;

    border-bottom: 1px solid #EEF2F7;
}

.mobile-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 58px;

    padding: 12px 4px;

    color: #081B4B;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.mobile-menu-list > li > a:hover {
    color: #2F80ED;
    padding-left: 8px;
}


/*==================================================
  MOBILE SUBMENUS
==================================================*/

.mobile-menu-list .sub-menu {
    list-style: none;

    margin: 0;
    padding: 0 0 0 16px;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}

.mobile-menu-list
.menu-item-has-children.submenu-open
> .sub-menu {

    max-height: 600px;

    padding-bottom: 12px;

    opacity: 1;
}

.mobile-menu-list .sub-menu li {
    width: 100%;
}

.mobile-menu-list .sub-menu li a {
    display: block;

    padding: 10px 6px;

    color: #60708B;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu-list .sub-menu li a:hover {
    color: #2F80ED;
    transform: translateX(5px);
}


/*==================================================
  SUBMENU ARROW
==================================================*/

.mobile-submenu-arrow {
    margin-left: auto;

    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: #F4F7FC;

    color: #2F80ED;

    font-size: 16px;
    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.25s ease;
}

.menu-item-has-children.submenu-open
> a
.mobile-submenu-arrow {

    transform: rotate(180deg);

    background: #EEF4FF;
}


/*==================================================
  MOBILE CTA
==================================================*/

.mobile-menu-footer {
    padding: 20px 24px 30px;

    border-top: 1px solid #EEF2F7;

    background: #FBFCFE;

    flex-shrink: 0;
}

.mobile-demo-btn {
    width: 100%;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    box-sizing: border-box;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #FFB347,
            #FF8C00
        );

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    box-shadow:
        0 12px 30px rgba(255, 140, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mobile-demo-btn:hover {
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 18px 38px rgba(255, 140, 0, 0.35);
}

.mobile-demo-btn strong {
    font-size: 20px;

    transition:
        transform 0.3s ease;
}

.mobile-demo-btn:hover strong {
    transform: translateX(5px);
}


/*==================================================
  TABLET + MOBILE
==================================================*/

@media (max-width: 991px) {

    .header-menu {
        display: none;
    }

    .header-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        width: min(94%, 1400px);
    }

    .header-logo {
        flex: 0 0 auto;
    }

    .header-logo img {
        width: 165px;
    }

}


/*==================================================
  SMALL TABLET
==================================================*/

@media (max-width: 767px) {

    .header-logo img {
        width: 155px;
    }

    .mobile-menu-panel {
        width: min(400px, 92vw);
    }

}


/*==================================================
  MOBILE
==================================================*/

@media (max-width: 575px) {

    .site-header {
        height: 76px;
    }

    .header-container {
        height: 76px;
    }

    .header-logo img {
        width: 145px;
    }

    .mobile-menu-toggle {
        width: 43px;
        height: 43px;
    }

    .mobile-menu-header {
        min-height: 76px;
        padding: 0 20px;
    }

    .mobile-menu-brand img {
        width: 135px;
    }

    .mobile-menu-navigation {
        padding: 12px 20px 25px;
    }

    .mobile-menu-footer {
        padding: 18px 20px 25px;
    }

}


/*==================================================
  ACCESSIBILITY
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .mobile-menu-toggle,
    .mobile-menu-toggle span,
    .mobile-menu-overlay,
    .mobile-menu-panel,
    .mobile-menu-close,
    .mobile-menu-list .sub-menu,
    .mobile-submenu-arrow,
    .mobile-demo-btn {
        transition: none !important;
    }

}