/* Logic Launch Custom Styles */

/* ===== Custom Hamburger Menu ===== */
.ll-hamburger {
    width: 36px;
    height: 30px;
    position: relative;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.ll-hamburger .ll-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}
.ll-hamburger .ll-bar-top { width: 100%; }
.ll-hamburger .ll-bar-mid { width: 70%; margin-left: auto; }
.ll-hamburger .ll-bar-bot { width: 85%; }
.ll-hamburger[aria-expanded="true"] .ll-bar-top {
    transform: rotate(45deg) translateY(10px) translateX(4px);
}
.ll-hamburger[aria-expanded="true"] .ll-bar-mid {
    opacity: 0;
    width: 0;
}
.ll-hamburger[aria-expanded="true"] .ll-bar-bot {
    transform: rotate(-45deg) translateY(-10px) translateX(4px);
    width: 100%;
}
.ll-hamburger:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* ===== Logo sizing ===== */
.theme-main-menu .logo img {
    transition: all 0.3s ease;
}

/* ===== Black & White to Color Hover ===== */
.ll-bw-hover {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.ll-bw-hover:hover {
    filter: grayscale(0%);
}

/* ===== Process / How We Work ===== */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-step .step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.process-step h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== White-Label / Detail Feature Cards ===== */
.detail-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.detail-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
.detail-feature-card .df-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.detail-feature-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}
.detail-feature-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== Checklist Style ===== */
.ll-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ll-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.6;
}
.ll-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 18px;
}

/* ===== About Extended ===== */
.about-value-card {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s;
}
.about-value-card:hover {
    transform: translateY(-5px);
}
.about-value-card .av-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}
.about-value-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== Login button style ===== */
.btn-fifteen i.bi-person-circle {
    font-size: 16px;
    vertical-align: middle;
}

/* Rich text content styling */
.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: block;
}
.rich-content video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: block;
}
.rich-content iframe {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}
.rich-content .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 15px 0;
}
.rich-content .video-wrapper iframe,
.rich-content .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.rich-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}
.rich-content ul, .rich-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}
.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.rich-content table td, .rich-content table th {
    border: 1px solid #e0e0e0;
    padding: 10px;
}
.rich-content a {
    color: #3b82f6;
    text-decoration: underline;
}

/* Project card */
.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.project-card .img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.project-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover .img-wrapper img {
    transform: scale(1.05);
}
.project-card .card-body {
    padding: 24px;
}
.project-card .card-body .category {
    font-size: 13px;
    color: #6c63ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}
.project-card .card-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.project-card .card-body h4 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}
.project-card .card-body h4 a:hover {
    color: #6c63ff;
}
.project-card .card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Blog card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.blog-card .img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .img-wrapper img {
    transform: scale(1.05);
}
.blog-card .card-body {
    padding: 24px;
}
.blog-card .card-body .date {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}
.blog-card .card-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-card .card-body h4 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-card .card-body h4 a:hover {
    color: #6c63ff;
}
.blog-card .card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact form */
.contact-form .form-control {
    border-radius: 8px;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}
.contact-form textarea.form-control {
    min-height: 150px;
}

/* Alert messages */
.alert-custom {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}
.alert-success-custom {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error-custom {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Page header / inner banner */
.inner-page-banner {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
}
.inner-page-banner h2 {
    font-size: 48px;
    font-weight: 700;
}

/* Detail page styles */
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.detail-meta .meta-item {
    display: flex;
    flex-direction: column;
}
.detail-meta .meta-item .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    font-weight: 600;
}
.detail-meta .meta-item .value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Featured image */
.featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services page cards */
.service-highlight {
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.3s;
}
.service-highlight:hover {
    transform: translateY(-5px);
}
.service-highlight h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Admin styles */
.admin-sidebar {
    background: #1a1a2e;
    min-height: 100vh;
    padding-top: 20px;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.7);
    padding: 12px 20px;
    border-radius: 8px;
    margin: 2px 10px;
    transition: all 0.3s;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.admin-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.stat-card {
    text-align: center;
    padding: 30px 20px;
}
.stat-card .number {
    font-size: 36px;
    font-weight: 700;
    color: #6c63ff;
}
.stat-card .label {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}
