/* ===== ROOT & GLOBAL STYLES ===== */
:root {
    --primary-color: #00a4cc;
    --danger-color: #ff0000;
    --danger-dark: #cc0000;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --border-light: #e0e0e0;
    --border-teal: #76f6e5;
    --bg-light: #f5f7fa;
    --bg-lighter: #f8f9fa;
    --bg-blue: #f0f8fc;
    --bg-blue-light: #e6f4f9;
    --bg-dark: #2a2a2a;
    --bg-darker: #1a1a1a;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.08);
    --shadow-primary: 0 3px 10px rgba(0, 164, 204, 0.4);
    --shadow-danger: 0 3px 10px rgba(255, 0, 0, 0.2);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-normal: ease;
}

body {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* ===== NAVBAR & HEADER ===== */
.navbar {
    background: white !important;
    box-shadow: var(--shadow-sm);
}

.navbar-brand h3 {
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
    position: relative;
    cursor: pointer;
    margin-bottom: 0px;
}

.problem-card input {
    display: none;
}

.problem-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid var(--border-teal);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    background: white;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.problem-card label::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 164, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-normal);
    pointer-events: none;
}

.problem-card label:hover {
    border-color: var(--primary-color);
    background: var(--bg-blue);
    box-shadow: 0 12px 28px rgba(0, 164, 204, 0.25);
    transform: translateY(-6px);
}

.problem-card label:hover::before {
    opacity: 1;
}

.problem-card label:hover .problem-icon {
    transform: scale(1.2) rotate(8deg);
}

.problem-card label:hover .problem-title {
    color: var(--primary-color);
    font-weight: 700;
}

.problem-card input:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-blue-light) 100%);
    box-shadow: 0 15px 35px rgba(0, 164, 204, 0.35);
    border-width: 3px;
}

.problem-card input:checked + label::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    animation: checkmarkPop 0.5s var(--ease-bounce);
    box-shadow: var(--shadow-primary);
}

@keyframes checkmarkPop {
    0% { transform: scale(0) rotate(-90deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.problem-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 164, 204, 0.1);
}

.problem-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    z-index: 1;
}

/* ===== BRAND CARDS ===== */
.brand-card {
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
}

.brand-card input {
    display: none;
}

.brand-card label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid var(--border-teal);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    background: white;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    gap: 10px;
    position: relative;
    min-height: 60px;
    overflow: hidden;
}

.brand-card label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s var(--ease-normal);
}

.brand-card label:hover::before {
    left: 100%;
}

.brand-card label:hover {
    border-color: var(--primary-color);
    background: var(--bg-blue);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 164, 204, 0.2);
    transform: translateY(-4px);
}

.brand-card label:hover i {
    transform: scale(1.25) rotate(-8deg);
}

.brand-card input:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-blue-light) 100%);
    color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(0, 164, 204, 0.3);
    border-width: 3px;
}

.brand-card input:checked + label::after {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    animation: popInBrand 0.4s var(--ease-bounce);
    box-shadow: 0 3px 8px rgba(0, 164, 204, 0.35);
}

@keyframes popInBrand {
    0% { transform: translateY(-50%) scale(0) rotate(-120deg); }
    50% { transform: translateY(-50%) scale(1.15) rotate(20deg); }
    100% { transform: translateY(-50%) scale(1) rotate(0deg); }
}

.brand-card label i {
    font-size: 28px;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    z-index: 2;
}

/* ===== CONTACT SECTION ===== */
.contact-us-section {
    padding: 60px 0;
    margin: 50px 0;
}

.contact-us-section h2 {
    color: var(--danger-color);
    font-size: 28px;
    font-weight: bold;
}

.contact-us-section p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== PRINTER PROBLEMS SECTION ===== */
.printer-problems-section {
    padding: 60px 0;
    background: white;
}

.printer-problems-section h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
}

.problem-solution-card {
    border: 2px solid var(--border-teal);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.35s var(--ease-smooth);
    background: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.problem-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--danger-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-normal);
}

.problem-solution-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 28px rgba(0, 164, 204, 0.2);
    transform: translateY(-8px);
}

.problem-solution-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.35s var(--ease-normal);
}

.problem-solution-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(-10deg);
}

.problem-solution-card h4 {
    color: var(--danger-color);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.problem-solution-card ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.problem-solution-card ul li {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
    transition: all 0.3s var(--ease-normal);
}

.problem-solution-card:hover ul li {
    color: var(--text-dark);
}

/* ===== BUTTONS ===== */
.choose-problem-btn {
    background: var(--danger-color);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.choose-problem-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-normal), height 0.6s var(--ease-normal);
}

.choose-problem-btn:hover::before {
    width: 300px;
    height: 300px;
}

.choose-problem-btn:hover {
    background: var(--danger-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.choose-problem-btn:active {
    transform: translateY(-2px);
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.btn-custom {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: all 0.35s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-next {
    background: var(--danger-color);
    color: white;
}

.btn-next:hover {
    background: var(--danger-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.btn-next:active {
    transform: translateY(-1px);
}

.btn-prev {
    background: var(--border-light);
    color: var(--text-dark);
}

.btn-prev:hover {
    background: #d0d0d0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-prev:active {
    transform: translateY(-1px);
}

/* ===== SOLUTION PAGE STYLES ===== */
.solution-wrapper {
    padding: 60px 0;
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.6s var(--ease-normal);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-left {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, white 100%);
    padding: 45px 40px;
    border-right: 2px solid var(--border-light);
}

.solution-right {
    padding: 45px 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header Section */
.solution-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-light);
}

.solution-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-title i {
    color: var(--primary-color);
    font-size: 36px;
}

.solution-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.issue-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-dark) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    box-shadow: var(--shadow-danger);
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--bg-lighter);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.35s var(--ease-smooth);
    cursor: pointer;
    animation: fadeInUp 0.5s var(--ease-normal) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }
.step-card:nth-child(7) { animation-delay: 0.7s; }

.step-card:hover {
    background: var(--bg-blue);
    border-left-color: var(--danger-color);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 164, 204, 0.12);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088a8 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 164, 204, 0.25);
    transition: all 0.35s var(--ease-normal);
}

.step-card:hover .step-number {
    background: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-dark) 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
    transform: scale(1.12);
}

.step-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.step-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Chat Area */
.chat-container {
    background: linear-gradient(135deg, white 0%, var(--bg-blue) 100%);
    border-radius: 12px;
    padding: 35px;
    border: 2px solid var(--bg-blue-light);
}

.chat-header {
    text-align: center;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.chat-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.chat-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 0;
}

.chat-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Tawk Widget Area */
.tawk-widget-area {
    margin: 0 0 25px;
    min-height: 450px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tawk-widget-area iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Benefits Section */
.chat-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s var(--ease-normal);
    cursor: pointer;
}

.benefit-item:hover {
    background: var(--bg-blue);
    transform: translateX(5px);
    border-left-color: var(--danger-color);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.benefit-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.brand-info {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.badge-brand {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-blue-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

/* ===== TRUST BADGES ===== */
.trust-badges-section {
    border-top: 1px solid var(--text-dark);
    padding-top: 40px;
    background: var(--bg-dark);
}

.badge-item {
    padding: 30px;
    text-align: center;
    transition: all 0.35s var(--ease-normal);
    position: relative;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease-smooth);
    animation: float 3s ease-in-out infinite;
}

.badge-item:hover .badge-icon {
    transform: scale(1.2) rotate(15deg);
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-item h5 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    transition: all 0.35s var(--ease-normal);
}

.badge-item:hover h5 {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer,
.footer-area {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer h5,
.single-footer-widget h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer p,
.single-footer-widget p {
    color: #bbb;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.support-list,
.footer-links,
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li,
.footer-links li,
.footer-contact-info li {
    margin-bottom: 10px;
}

.support-list a,
.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s var(--ease-normal);
    position: relative;
}

.support-list a::after,
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.35s var(--ease-normal);
}

.support-list a:hover,
.footer-links a:hover {
    color: white;
}

.support-list a:hover::after,
.footer-links a:hover::after {
    width: 100%;
}

.footer-contact-info {
    color: #bbb;
}

.copyright-area,
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: var(--text-muted);
    margin: 0;
    font-size: 13px;
}

.divider,
.footer-divider {
    height: 1px;
    background: #444;
    margin: 25px 0;
}

/* ===== FORM VALIDATION ===== */
.error-message {
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 5px;
    display: none;
    animation: slideInError 0.3s var(--ease-normal);
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-control.is-invalid {
    border-color: var(--danger-color) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .solution-left {
        border-right: none;
        border-bottom: 2px solid var(--border-light);
        padding: 35px;
    }

    .solution-right {
        padding: 35px;
    }

    .solution-title {
        font-size: 28px;
    }

    .step-card {
        padding: 18px;
        gap: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .solution-wrapper,
    .printer-problems-section {
        padding: 30px 0;
    }

    .solution-left,
    .solution-right {
        padding: 25px;
    }

    .problem-card label {
        padding: 20px 15px;
        min-height: 140px;
    }

    .problem-icon {
        font-size: 40px;
    }

    .problem-title {
        font-size: 13px;
        line-height: 20px;
    }

    .solution-title {
        font-size: 24px;
    }

    .contact-us-section h2,
    .printer-problems-section h2 {
        font-size: 22px;
    }

    .contact-us-section p {
        font-size: 14px;
    }

    .step-card {
        padding: 15px;
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .problem-solution-card {
        padding: 20px;
    }

    .problem-solution-card h4 {
        font-size: 16px;
    }

    .problem-solution-card ul li {
        font-size: 13px;
    }

    .chat-container {
        padding: 25px;
    }

    .chat-header h3 {
        font-size: 22px;
    }

    .tawk-widget-area {
        min-height: 350px;
    }

    .tawk-widget-area iframe {
        height: 350px;
    }

    .badge-item {
        padding: 20px;
    }

    .badge-icon {
        font-size: 40px;
    }

    .badge-item h5 {
        font-size: 14px;
    }

    .benefit-item {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .solution-left,
    .solution-right {
        padding: 5%;
    }

    .problem-card label {
        padding: 15px 10px;
        min-height: 120px;
    }

    .problem-icon {
        font-size: 32px;
    }

    .solution-title {
        font-size: 20px;
    }

    .step-card {
        padding: 12px;
        gap: 10px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .choose-problem-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .chat-container {
        padding: 20px;
        margin-top: 30px;
    }

    .solution-header {
        margin-bottom: 25px;
    }

    .steps-container {
        gap: 10px;
    }

    .trust-badges-section {
        background: transparent;
        border-top: none;
        padding-top: 0;
    }

    .badge-item {
        padding: 15px;
        border-top: 1px solid #444;
    }

    .badge-item:first-child {
        border-top: none;
    }
}
 /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, #0066cc 0%, #00a3e0 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: slideDown 0.8s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .search-box {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
            background: white;
            border-radius: 50px;
            padding: 0.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .search-box input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            border-radius: 50px;
            outline: none;
        }

        .search-box button {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .search-box button:hover {
            transform: scale(1.05);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 2rem;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* ===== PRINTER BRANDS ===== */
        .brands-section {
            padding: 4rem 2rem;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
            color: #222;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .brands-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
        }

        .brand-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
            border-radius: 15px;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .brand-item:hover {
            transform: translateY(-10px);
            border-color: #0066cc;
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
            background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
        }

        .brand-icon {
            font-size: 3rem;
            color: #0066cc;
            margin-bottom: 1rem;
            transition: transform 0.3s;
        }

        .brand-item:hover .brand-icon {
            transform: scale(1.2) rotate(-10deg);
        }

        .brand-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #222;
        }

        /* ===== PROBLEM FORM SECTION ===== */
        .form-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .form-container {
            max-width: 1100px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .form-left {
            background: linear-gradient(135deg, #0066cc 0%, #00a3e0 100%);
            color: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-left h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .form-benefit {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .form-benefit i {
            font-size: 1.5rem;
            min-width: 30px;
            margin-top: 0.5rem;
        }

        .form-benefit p {
            font-size: 1rem;
            line-height: 1.5;
        }

        .form-right {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .form-submit {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* ===== BLOGS SECTION ===== */
        .blogs-section {
            padding: 5rem 2rem;
            background: white;
        }

        .blogs-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #00a3e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .blog-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 163, 224, 0.3) 100%);
            transition: opacity 0.3s;
            opacity: 0;
        }

        .blog-card:hover .blog-image::after {
            opacity: 1;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-date {
            color: #ff6b35;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #0066cc;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s;
        }

        .blog-read-more:hover {
            gap: 1rem;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #0066cc 0%, #00a3e0 100%);
            color: white;
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .stars {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 0.2rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .testimonial-author {
            font-weight: 700;
            font-size: 1rem;
        }

        .testimonial-role {
            font-size: 0.85rem;
            opacity: 0.85;
            margin-top: 0.25rem;
        }

        

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .form-wrapper {
                grid-template-columns: 1fr;
            }

            .form-left {
                padding: 2rem;
            }

            .form-right {
                padding: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .blogs-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }