/* OnlinePBX Modern 2025 Styles - Brand Consistent Palette */

:root {
    --primary-glow: rgba(10, 106, 110, 0.4);
    /* Teal glow - #0A6A6E */
    --secondary-glow: rgba(102, 165, 173, 0.3);
    /* Lighter teal - #66a5ad */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --brand-accent: #0A6A6E;
    --brand-dark: #04202c;
    --brand-teal: #0A6A6E;
    --brand-surface: #5d969e;
}

/* -------------------------------------------------------------------------- */
/* 1. Page Hero V2 (Modern Glassmorphism)
/* -------------------------------------------------------------------------- */
.page-hero-v2 {
    position: relative;
    padding: 160px 0 100px;
    background: var(--brand-dark);
    overflow: hidden;
}

.hero-v2-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.v2-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.v2-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    top: -100px;
    right: -100px;
}

.v2-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-teal);
    bottom: -50px;
    left: -50px;
}

.v2-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary-glow);
    top: 20%;
    left: 10%;
}

/* Breadcrumbs V2 */
.breadcrumbs-v2 {
    margin-bottom: 2rem;
}

.breadcrumbs-v2 ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs-v2 ol li {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs-v2 ol li a {
    color: var(--brand-teal);
    transition: 0.3s;
}

.breadcrumbs-v2 ol li+li::before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Hero Content */
.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(10, 106, 110, 0.1);
    border: 1px solid rgba(10, 106, 110, 0.2);
    border-radius: 50px;
    color: var(--brand-teal);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--brand-teal);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
}

/* Hero Image Box */
.hero-image-box {
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(10, 106, 110, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.hero-main-img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.crm-card {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.record-card {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 24px;
    color: var(--brand-teal);
}

.floating-card div span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.floating-card div strong {
    color: #fff;
    font-size: 14px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* -------------------------------------------------------------------------- */
/* 2. Feature Cards V2
/* -------------------------------------------------------------------------- */
.feature-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.feature-card-v2:hover {
    background: rgba(10, 106, 110, 0.05);
    border-color: var(--brand-teal);
    transform: translateY(-5px);
}

.feature-card-v2 .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(10, 106, 110, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-teal);
    font-size: 28px;
    transition: 0.3s;
}

.feature-card-v2:hover .icon-box {
    background: var(--brand-teal);
    color: #fff;
    transform: rotate(10deg);
}

.feature-card-v2 h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-v2 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* -------------------------------------------------------------------------- */
/* 3. Process Steps V2
/* -------------------------------------------------------------------------- */
.process-steps-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--brand-teal);
    background: rgba(10, 106, 110, 0.05);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-teal);
    opacity: 0.3;
    line-height: 1;
}

.step-info h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* 4. Pricing Glass Card
/* -------------------------------------------------------------------------- */
.pricing-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.pricing-glass-card.featured {
    border-color: var(--brand-teal);
    background: rgba(10, 106, 110, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-teal);
}

.price {
    margin: 1.5rem 0;
    color: #fff;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.btn-pricing-glass {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-top: auto;
    transition: 0.3s;
}

.btn-pricing-glass:hover {
    background: var(--brand-teal);
    color: #fff;
}

/* Sidebar Styling */
.sidebar-brand-2025 .sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-brand-2025 h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.sidebar-menu li a.active,
.sidebar-menu li a:hover {
    background: var(--brand-teal);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.7rem;
    }
}