@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* Testimonials section (Public-style) - CSS variables */
:root {
    --bg-main: #F7F8FA;
    --bg-white: #FFFFFF;
    --bg-soft: #F0F2F5;
    --primary-blue: #2563EB;
    --secondary-blue: #3B82F6;
    --light-blue: #EEF2FF;
    --heading-text: #1E293B;
    --body-text: #475569;
    --muted-text: #64748B;
    --card-border: #E2E8F0;
    --card-shadow: rgba(15, 23, 42, 0.04);
}

/* ============================================
   CONSOLIDATED CSS STRUCTURE
   ============================================
   
   Common Sections (Used Across All Pages):
   - .header / .header-content / .nav-menu
   - .hero-section (base hero styles)
   - .testimonials-section (common testimonials)
   - .reasons-section (common "why choose" sections)
   - .footer-section (common footer)
   
   Page-Specific Variations:
   - .pricing-hero-section (extends .hero-section)
   - .contact-hero-section (extends .hero-section)
   - .pricing-testimonials-section (extends .testimonials-section)
   - .why-choose-pricing-section (extends .reasons-section)
   - .why-contact-section (extends .reasons-section)
   
   All common sections share the same CSS classes to avoid conflicts.
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "DM Sans";
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.checkout-modal-overlay.is-open {
    display: flex;
}

.checkout-modal {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    position: relative;
}

.checkout-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.checkout-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
    font-family: "DM Sans";
    color: #111827;
}

.checkout-modal-subtitle {
    margin: 0 0 16px 0;
    color: #6b7280;
    font-family: "DM Sans";
}

.checkout-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    font-family: "DM Sans";
}

.checkout-input,
.checkout-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: "DM Sans";
    outline: none;
    box-sizing: border-box;
}

.checkout-textarea {
    resize: vertical;
    min-height: 110px;
}

.checkout-input:focus,
.checkout-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

.checkout-form-error {
    padding: 10px 12px;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    font-family: "DM Sans";
    font-size: 14px;
}

.checkout-form-success {
    padding: 10px 12px;
    border-radius: 12px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    font-family: "DM Sans";
    font-size: 14px;
}

.checkout-submit-btn {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.checkout-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Checkout Success Page */
.success-page {
    padding: 42px 0 70px;
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 55%, #ffffff 100%);
}

.success-card {
    max-width: 860px;
    margin: 16px auto 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 34px 28px;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.14);
    text-align: center;
    border: 1px solid rgba(229, 231, 235, 0.9);
    font-family: "Inter", "DM Sans";
}

.success-progress {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Inter", "DM Sans";
}

.success-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 84px;
}

.success-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    background: #ffffff;
}

.success-step-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.success-progress-step.is-done .success-step-dot {
    border-color: rgba(16, 185, 129, 0.5);
    color: #047857;
    background: #ecfdf5;
}

.success-progress-step.is-active .success-step-dot {
    border-color: rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.25);
}

.success-progress-step.is-active .success-step-label {
    color: #047857;
}

.success-progress-line {
    position: relative;
    width: 110px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.success-progress-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
    border-radius: 999px;
    animation: successProgressFill 900ms ease forwards;
}

.success-progress-line:nth-of-type(1) .success-progress-fill {
    width: 100%;
}

.success-progress-line:nth-of-type(2) .success-progress-fill {
    animation-delay: 150ms;
    width: 40%;
}

.success-progress-line:nth-of-type(3) .success-progress-fill {
    animation-delay: 300ms;
    width: 0%;
}

@keyframes successProgressFill {
    from { transform: translateX(-8%); opacity: 0.4; }
    to { transform: translateX(0); opacity: 1; }
}

.success-hero-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 14px;
    border-radius: 999px;
    padding: 6px;
    background: radial-gradient(circle at 30% 30%, rgba(110, 231, 183, 0.9) 0%, rgba(16, 185, 129, 0.95) 55%, rgba(5, 150, 105, 1) 100%);
    box-shadow: 0 22px 50px rgba(16, 185, 129, 0.22);
}

.success-hero-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    animation: successCheckPop 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes successCheckPop {
    0% { transform: scale(0.75); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.success-step-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: successCheckPop 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.success-title {
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 10px 0;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.success-supporting {
    margin: 0 0 8px 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
}

.success-subtitle {
    margin: 0 0 20px 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.success-details {
    margin: 18px auto 18px;
    max-width: 760px;
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 1);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.success-details-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.success-details-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.10);
    color: #667eea;
    flex-shrink: 0;
}

.success-details-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 2px;
}

.success-details-value {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    word-break: break-word;
}

.success-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 12px;
    font-weight: 800;
}

.success-tech-card {
    max-width: 760px;
    margin: 0 auto 18px;
    padding: 16px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.06) 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    text-align: left;
}

.success-tech-title {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.success-tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.success-tech-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.success-tech-key {
    font-size: 13px;
    color: #6b7280;
    font-weight: 700;
}

.success-tech-val {
    font-size: 13px;
    color: #111827;
    font-weight: 800;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.success-btn-primary,
.success-btn-secondary {
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 18px;
    display: inline-block;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.success-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(102, 126, 234, 0.26);
}

.success-btn-secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.success-btn-primary:hover,
.success-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
}

.success-support-link {
    margin-top: 12px;
}

.success-support-anchor {
    font-family: "Inter", "DM Sans";
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
}

.success-support-anchor:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .success-page {
        padding: 40px 0;
    }
    .success-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .success-title {
        font-size: 28px;
    }
    .success-progress {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .success-progress-step {
        min-width: 74px;
    }
    .success-progress-line {
        width: 64px;
    }
    .success-details {
        grid-template-columns: 1fr;
    }
    .success-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .success-btn-primary,
    .success-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .checkout-modal {
        padding: 18px;
        border-radius: 14px;
    }
    .checkout-modal-title {
        font-size: 20px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 72px;
}

.header-content .nav-menu,
.header-content .header-actions {
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Logo inside nav (shown in mobile drawer only) */
.nav-menu-logo {
    display: none;
}

.nav-menu-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Wrapper for scroll area (mobile); desktop: no wrapper effect */
.nav-menu-scroll,
.nav-menu-bottom {
    display: contents;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-drawer-overlay.overlay-active {
    opacity: 1;
    pointer-events: auto;
}

/* Desktop: only header-actions buttons (Chat + Phone). Nav drawer buttons hidden. */
.desktop-phone-btn {
    display: inline-flex;
}

.mobile-phone-btn {
    display: none !important;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.desktop-chat-btn {
    display: inline-flex !important;
}

.mobile-chat-btn {
    display: none !important;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

/* Mobile Drawer Styles */
@media (max-width: 768px) {
    .header-content {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Mobile: hide desktop buttons and header-actions completely */
    .header-actions {
        display: none !important;
    }

    .desktop-phone-btn,
    .desktop-chat-btn {
        display: none !important;
    }

    /* Mobile: show Chat + Phone only inside drawer */
    .mobile-phone-btn {
        display: inline-flex !important;
        width: 100%;
        margin-top: 16px;
        justify-content: center;
        box-sizing: border-box;
    }

    .mobile-chat-btn {
        display: inline-flex !important;
        width: 100%;
        margin-top: 16px;
        justify-content: center;
        box-sizing: border-box;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        max-width: 88%;
        height: 100vh;
        max-height: 100dvh;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow: hidden;
        box-sizing: border-box;
    }

    .nav-menu.drawer-open {
        left: 0;
    }

    .nav-menu-scroll {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-gutter: stable;
        padding: 72px 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-shrink: 0;
        padding: 14px 20px 20px;
        border-top: 1px solid #e8e8e8;
        background: #fff;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu-bottom .mobile-chat-btn,
    .nav-menu-bottom .mobile-phone-btn {
        margin-top: 0;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .nav-menu-logo {
        display: block;
        padding: 0 0 14px;
        margin-bottom: 10px;
        border-bottom: 1px solid #e8e8e8;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu-logo-img {
        height: 36px;
        width: auto;
        display: block;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid #eee;
        display: block;
        box-sizing: border-box;
    }

    .nav-link:hover {
        color: #8B4513;
        padding-left: 4px;
        transition: all 0.2s ease;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f6f6f6;
        margin-top: 4px;
        margin-left: 0;
        margin-bottom: 0;
        border-radius: 6px;
        padding: 6px 0;
        display: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-sizing: border-box;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        max-height: 300px;
        padding: 6px 0;
    }

    .dropdown-item {
        padding: 10px 0 10px 16px;
        border-bottom: none;
        font-size: 14px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-item:last-child {
        padding-bottom: 10px;
    }

    .dropdown-item:hover {
        padding-left: 20px;
        background: #eee;
    }

    .mobile-drawer-overlay {
        display: block;
    }

    /* Prevent body scroll when drawer is open – avoid layout shift */
    body.drawer-body-lock {
        overflow: hidden;
        scrollbar-gutter: stable;
    }

    /* Keep drawer content from overflowing and shifting */
    .nav-menu .nav-dropdown,
    .nav-menu .dropdown-menu {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Dropdown toggle for mobile */
@media (max-width: 768px) {
    .dropdown-toggle {
        cursor: pointer;
    }

    .dropdown-toggle svg {
        margin-left: auto;
    }

    .nav-dropdown.active .dropdown-toggle svg {
        transform: rotate(180deg);
    }

    /* Smooth scroll for drawer */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }

    /* Drawer animation improvements */
    .nav-menu.drawer-open {
        animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInLeft {
        from {
            left: -100%;
        }
        to {
            left: 0;
        }
    }
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B4513;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: "DM Sans";
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #8B4513;
    padding-left: 25px;
}

.phone-btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #8B4513;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1;
    vertical-align: middle;
}

.phone-btn-header:hover {
    background-color: #6B3410;
}

/* Chat Button Header */
.chat-btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    vertical-align: middle;
}

.chat-btn-header:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.chat-btn-header svg {
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Desktop only: show Chat + Phone in header-actions; hide mobile buttons inside nav */
@media (min-width: 769px) {
    .nav-menu .mobile-chat-btn,
    .nav-menu .mobile-phone-btn {
        display: none !important;
    }
    .header-actions {
        display: flex;
    }
}

/* Keep navbar buttons (Chat, Phone) on same baseline */
.header-actions .chat-btn-header,
.header-actions .phone-btn-header {
    align-self: center;
    line-height: 1;
    min-height: 44px;
    box-sizing: border-box;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 500px;
    max-height: 650px;
    overflow: hidden;
    margin-top: 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-left {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-left {
    display: none;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 5;
    pointer-events: none;
}

.hero-right {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-right {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-people-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 90%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 0;
}

.hero-content > * {
    order: 0;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    letter-spacing: 0.5px;
    font-family: "DM Sans";
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-family: "DM Sans";
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    font-family: "DM Sans";
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-phone {
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #D2691E;
    color: #fff;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.5);
    background: #CD853F;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-phone {
    background: #D2691E;
    color: #fff;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.btn-phone:hover {
    background: #CD853F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.6s both;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 100;
    pointer-events: none;
}

.carousel-controls .carousel-btn {
    pointer-events: all;
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn:hover {
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    pointer-events: all;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background-color: #fff;
    width: 32px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        height: 500px;
        min-height: 400px;
        max-height: 550px;
    }

    .hero-wrapper {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .carousel-controls {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 5px;
        background-color: transparent;
        padding: 0;
    }

    .dropdown-item {
        padding: 8px 15px;
        font-size: 14px;
    }

    .phone-btn-header {
        order: 2;
    }

    .hero-section {
        height: auto;
        min-height: 500px;
        max-height: none;
        padding-bottom: 80px;
    }

    .hero-wrapper {
        flex-direction: column;
        min-height: 500px;
    }

    .hero-left,
    .hero-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-left {
        padding: 60px 0 140px;
        min-height: 500px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 30px 0;
        display: flex;
        flex-direction: column;
        order: 1;
        position: relative;
        z-index: 10;
        margin-bottom: 0;
        text-align: center;
        align-items: center;
    }

    .hero-tag {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 20px;
        order: 1;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
        order: 2;
        text-align: center;
        width: 100%;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 35px;
        order: 3;
        text-align: center;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        order: 4;
        margin-bottom: 0;
        width: 100%;
        align-items: stretch;
    }

    .hero-section {
        padding-bottom: 110px;
    }

    .btn-primary,
    .btn-phone {
        width: 60%;
        left: 70px;
        padding: 16px 32px;
        font-size: 15px;
    }

    .carousel-controls {
        top: auto;
        bottom: 80px;
        transform: none;
        padding: 0 20px;
        z-index: 20;
        pointer-events: none;
    }

    .carousel-controls .carousel-btn {
        pointer-events: all;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-dots {
        bottom: 30px;
        z-index: 20;
        position: absolute;
        pointer-events: all;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .footer-logo-img {
        height: 45px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 14px;
    }

    .dropdown-toggle svg {
        width: 10px;
        height: 10px;
    }

    .dropdown-menu {
        min-width: 180px;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 13px;
    }

    .phone-btn-header {
        padding: 10px 16px;
        font-size: 14px;
    }

    .chat-btn-header {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero-section {
        height: auto;
        min-height: 450px;
        max-height: none;
        padding-bottom: 70px;
    }

    .hero-wrapper {
        min-height: 450px;
    }

    .hero-left {
        padding: 20px 0 70px;
        min-height: 450px;
    }

    .hero-content {
        padding: 0 15px 0;
        display: flex;
        flex-direction: column;
        order: 1;
        position: relative;
        z-index: 10;
        margin-bottom: 0;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 18px;
        order: 1;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
        order: 2;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
        order: 3;
    }

    .hero-buttons {
        order: 4;
        margin-bottom: 0;
    }

    .btn-primary,
    .btn-phone {
        padding: 14px 28px;
        font-size: 14px;
    }

    .carousel-controls {
        top: auto;
        bottom: 70px;
        transform: none;
        padding: 0 15px;
        z-index: 20;
        pointer-events: none;
    }

    .carousel-controls .carousel-btn {
        pointer-events: all;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dots {
        bottom: 2px;
        gap: 10px;
        z-index: 20;
        position: absolute;
        pointer-events: all;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 28px;
    }
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 40px 20px;
    background-color: #fff;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.title-line {
    flex: 1;
    height: 1px;
    background-color: #000;
    max-width: 200px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    font-family: "DM Sans";
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(26, 66, 141, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(26, 66, 141, 0.25);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    padding: 20px;
    background-color: #f8f9fa;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 24px 20px;
    line-height: 1.5;
    font-family: "DM Sans";
}

.services-page-section {
    padding: 100px 20px;
    background-color: #fff;
}

.service-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0;
    padding: 0 20px 24px 20px;
    line-height: 1.6;
    font-family: "DM Sans";
}

/* Tech Issues Support Section */
.tech-issues-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #E3F2FD 0%, #BBDEFB 50%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
}

.tech-issues-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(33, 150, 243, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.tech-issues-section .container {
    position: relative;
    z-index: 1;
}

.tech-issues-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-issues-content {
    flex: 0 0 50%;
    width: 50%;
}

.tech-issues-badge {
    display: inline-block;
    background-color: #1a428d;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "DM Sans";
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(26, 66, 141, 0.2);
}

.tech-issues-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "DM Sans";
}

.highlight-text {
    color: #1a428d;
}

.tech-issues-text {
    font-size: 18px;
    color: #424242;
    margin-bottom: 25px;
    line-height: 1.8;
    font-family: "DM Sans";
}

.tech-issues-text:last-of-type {
    margin-bottom: 40px;
}

.tech-issues-text strong {
    color: #1a428d;
    font-weight: 700;
}

.tech-issues-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "DM Sans";
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.tech-issues-cta:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.tech-issues-cta:active {
    transform: translateY(-1px);
}

.tech-issues-cta svg {
    width: 20px;
    height: 20px;
}

.tech-issues-trust-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-icon {
    font-size: 18px;
}

.trust-label {
    font-weight: 500;
}

.tech-issues-image {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
}

.tech-issues-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 66, 141, 0.2);
}

.tech-issues-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tech-issues-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1a428d;
    font-family: "DM Sans";
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4CAF50;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Responsive Design for Tech Issues Section */
@media (max-width: 1024px) {
    .tech-issues-section {
        padding: 100px 20px;
    }

    .tech-issues-wrapper {
        gap: 50px;
    }

    .tech-issues-title {
        font-size: 40px;
    }

    .tech-issues-text {
        font-size: 17px;
    }

    .tech-issues-trust-row {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tech-issues-section {
        padding: 80px 20px;
    }

    .tech-issues-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .tech-issues-content {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }

    .tech-issues-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .tech-issues-badge {
        margin-bottom: 18px;
    }

    .tech-issues-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .tech-issues-text {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .tech-issues-text:last-of-type {
        margin-bottom: 35px;
    }

    .tech-issues-cta {
        margin: 0 auto 30px;
    }

    .tech-issues-trust-row {
        justify-content: center;
        gap: 20px;
    }

    .trust-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tech-issues-section {
        padding: 60px 15px;
    }

    .tech-issues-wrapper {
        gap: 40px;
    }

    .tech-issues-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .tech-issues-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .tech-issues-text {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .tech-issues-text:last-of-type {
        margin-bottom: 30px;
    }

    .tech-issues-cta {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin-bottom: 25px;
    }

    .tech-issues-trust-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .trust-item {
        font-size: 13px;
    }

    .tech-issues-image-wrapper {
        border-radius: 16px;
    }

    .tech-issues-floating-badge {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Business IT Solutions Section */
.business-it-solutions-section {
    /* padding: 120px 20px; */
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.business-it-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(129, 174, 243, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.business-it-animated-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(129, 174, 243, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    background-position: 0 0, 30px 30px;
    animation: dotMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

@keyframes dotMove {
    0% {
        background-position: 0 0, 30px 30px;
    }
    100% {
        background-position: 60px 60px, 90px 90px;
    }
}

.business-it-solutions-section .container {
    position: relative;
    z-index: 1;
}

.business-it-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.business-it-content {
    flex: 1;
    text-align: left;
}

.business-it-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: "DM Sans";
    line-height: 1.1;
    letter-spacing: -1px;
}

.business-it-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #FF6B35;
    margin: 0 0 40px 0;
    font-family: "DM Sans";
    line-height: 1.4;
}

.business-it-paragraph {
    font-size: 17px;
    color: #4b5563;
    margin: 0 0 20px 0;
    line-height: 1.7;
    font-family: "DM Sans";
    font-weight: 400;
    max-width: 90%;
}

.business-it-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.business-it-feature-item {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 16px;
    color: #374151;
    font-family: "DM Sans";
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
    position: relative;
    padding-left: 0;
}

.business-it-feature-item::before {
    content: '';
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 0;
    flex-shrink: 0;
}

.business-it-feature-item svg.feature-icon {
    flex-shrink: 0;
    color: #ffffff;
    stroke-width: 3;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-left: 14px;
    margin-right: 0;
}

.business-it-feature-item span {
    margin-left: 68px;
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 0;
}

.business-it-trust-line {
    font-size: 16px;
    color: #6b7280;
    margin: 32px 0 0 0;
    font-family: "DM Sans";
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
}

.business-it-cta-area {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.business-it-cta-btn {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: "DM Sans";
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.business-it-cta-btn::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 ease;
}

.business-it-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.business-it-cta-btn:hover::before {
    left: 100%;
}

.business-it-secondary-link {
    font-size: 15px;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-family: "DM Sans";
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.business-it-secondary-link:hover {
    color: #e55a2b;
    gap: 10px;
}

.business-it-image-column {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-it-image-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.business-it-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: "DM Sans";
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 2;
    letter-spacing: 0.3px;
}

.business-it-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-fade-up-delay-4 {
    animation: fadeUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.animate-fade-up-delay-5 {
    animation: fadeUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Business IT Solutions */
@media (max-width: 1024px) {
    .business-it-wrapper {
        gap: 50px;
    }

    .business-it-title {
        font-size: 44px;
    }

    .business-it-subtitle {
        font-size: 20px;
    }

    .business-it-paragraph {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .business-it-solutions-section {
        padding: 80px 20px;
    }

    .business-it-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .business-it-content {
        text-align: left;
    }

    .business-it-title {
        font-size: 38px;
    }

    .business-it-subtitle {
        font-size: 19px;
        margin-bottom: 32px;
    }

    .business-it-paragraph {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .business-it-features {
        margin: 28px 0;
        gap: 14px;
    }

    .business-it-feature-item {
        font-size: 15px;
        gap: 0;
    }

    .business-it-feature-item::before {
        width: 52px;
        height: 52px;
    }

    .business-it-feature-item svg.feature-icon {
        width: 26px;
        height: 26px;
        margin-left: 13px;
    }

    .business-it-feature-item span {
        margin-left: 63px;
    }

    .business-it-trust-line {
        font-size: 15px;
        margin-top: 28px;
    }

    .business-it-cta-area {
        margin-top: 36px;
    }

    .business-it-image-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .business-it-solutions-section {
        padding: 60px 15px;
    }

    .business-it-wrapper {
        gap: 40px;
    }

    .business-it-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .business-it-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .business-it-paragraph {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .business-it-features {
        margin: 24px 0;
        gap: 30px;
    }

    .business-it-feature-item {
        font-size: 14px;
        gap: 0;
    }

    .business-it-feature-item::before {
        width: 36px;
        height: 36px;
    }

    .business-it-feature-item svg.feature-icon {
        width: 18px;
        height: 18px;
        margin-left: 10px;
    }

    .business-it-feature-item span {
        margin-left: 58px;
    }

    .business-it-trust-line {
        font-size: 14px;
        margin-top: 24px;
    }

    .business-it-cta-btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .business-it-secondary-link {
        font-size: 14px;
    }

    .business-it-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Business Services Content Section */
.business-services-content-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.business-services-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(129, 174, 243, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.business-services-content-section .container {
    position: relative;
    z-index: 1;
}

.business-services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-services-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    font-family: "DM Sans";
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.business-services-subtitle {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    font-family: "DM Sans";
}

.business-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.business-service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.business-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0), rgba(255, 107, 53, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.business-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.business-service-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 80, 0.2));
}

.business-service-card:hover::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.3), transparent);
    filter: blur(15px);
    z-index: -1;
}

.business-service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-service-card:hover .business-service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.business-service-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke-width: 2.5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-service-card:hover .business-service-icon {
    transform: scale(1.15);
}

.business-service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: "DM Sans";
    transition: color 0.3s ease;
}

.business-service-card:hover .business-service-name {
    color: #FF6B35;
}

.business-service-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-family: "DM Sans";
    font-weight: 400;
}

.business-service-link {
    font-size: 14px;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-family: "DM Sans";
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.business-service-card:hover .business-service-link {
    opacity: 1;
    transform: translateY(0);
}

.business-service-link:hover {
    color: #e55a2b;
    gap: 10px;
}

.business-services-cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.business-services-cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: "DM Sans";
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.business-services-cta-btn::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 ease;
}

.business-services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.business-services-cta-btn:hover::before {
    left: 100%;
}

/* Responsive Design for Business Services */
@media (max-width: 1024px) {
    .business-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .business-services-main-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .business-services-content-section {
        padding: 80px 20px;
    }

    .business-services-header {
        margin-bottom: 60px;
    }

    .business-services-main-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .business-services-subtitle {
        font-size: 16px;
    }

    .business-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        margin-bottom: 50px;
    }

    .business-service-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .business-service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .business-service-icon {
        width: 28px;
        height: 28px;
    }

    .business-service-name {
        font-size: 18px;
    }

    .business-service-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .business-services-content-section {
        padding: 60px 15px;
    }

    .business-services-header {
        margin-bottom: 50px;
    }

    .business-services-main-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .business-services-subtitle {
        font-size: 15px;
    }

    .business-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .business-service-card {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .business-service-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .business-service-icon {
        width: 26px;
        height: 26px;
    }

    .business-service-name {
        font-size: 17px;
    }

    .business-service-desc {
        font-size: 13px;
    }

    .business-services-cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Why Outsource IT Services Section */
.outsource-it-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.outsource-bg-glow {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.outsource-tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(129, 174, 243, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.06) 1px, transparent 1px);
    background-size: 80px 80px, 100px 100px, 60px 60px;
    background-position: 0 0, 40px 40px, 20px 20px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

@keyframes particleMove {
    0% {
        background-position: 0 0, 40px 40px, 20px 20px;
    }
    100% {
        background-position: 80px 80px, 120px 120px, 60px 60px;
    }
}

.outsource-it-section .container {
    position: relative;
    z-index: 1;
}

.outsource-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.outsource-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: "DM Sans";
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.outsource-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    margin: 0;
    font-family: "DM Sans";
    line-height: 1.6;
}

.outsource-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 70px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.outsource-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.outsource-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0), rgba(255, 107, 53, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.outsource-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.outsource-benefit-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 80, 0.2));
}

.outsource-benefit-card:hover::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.3), transparent);
    filter: blur(12px);
    z-index: -1;
}

.outsource-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.outsource-benefit-card:hover .outsource-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.outsource-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
    stroke-width: 2.5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outsource-benefit-card:hover .outsource-icon {
    transform: scale(1.15);
}

.outsource-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    font-family: "DM Sans";
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
}

.outsource-benefit-card:hover .outsource-benefit-title {
    color: #FF6B35;
}

.outsource-benefit-text {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
    font-family: "DM Sans";
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.outsource-cta-wrapper {
    text-align: center;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.outsource-cta-btn {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: "DM Sans";
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.outsource-cta-btn::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 ease;
}

.outsource-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.outsource-cta-btn:hover::before {
    left: 100%;
}

.outsource-secondary-link {
    font-size: 16px;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-family: "DM Sans";
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.outsource-secondary-link:hover {
    color: #e55a2b;
    gap: 10px;
}

/* Responsive Design for Outsource IT Section */
@media (max-width: 1200px) {
    .outsource-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .outsource-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .outsource-main-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .outsource-it-section {
        padding: 80px 20px;
    }

    .outsource-header {
        margin-bottom: 60px;
    }

    .outsource-main-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .outsource-subtitle {
        font-size: 18px;
    }

    .outsource-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        margin-bottom: 60px;
    }

    .outsource-benefit-card {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .outsource-icon-wrapper {
        width: 65px;
        height: 65px;
        margin: 0 auto 20px;
    }

    .outsource-icon {
        width: 26px;
        height: 26px;
    }

    .outsource-benefit-title {
        font-size: 18px;
    }

    .outsource-benefit-text {
        font-size: 14px;
    }

    .outsource-cta-wrapper {
        margin-top: 60px;
    }

    .outsource-cta-btn {
        padding: 18px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .outsource-it-section {
        padding: 60px 15px;
    }

    .outsource-header {
        margin-bottom: 50px;
    }

    .outsource-main-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .outsource-subtitle {
        font-size: 16px;
    }

    .outsource-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .outsource-benefit-card {
        padding: 28px 22px;
    }

    .outsource-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
    }

    .outsource-icon {
        width: 24px;
        height: 24px;
    }

    .outsource-benefit-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .outsource-benefit-text {
        font-size: 14px;
    }

    .outsource-cta-btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }

    .outsource-secondary-link {
        font-size: 15px;
    }
}

/* Help Services Section */
.help-services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
    position: relative;
}

.help-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 70px;
    font-family: "DM Sans";
}

.service-group {
    margin-bottom: 60px;
}

.service-group-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a428d;
    text-align: center;
    margin-bottom: 40px;
    font-family: "DM Sans";
}

.help-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.help-service-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(26, 66, 141, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.help-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(26, 66, 141, 0.2);
}

.help-service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.help-service-card:hover .help-service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%);
}

.help-service-icon {
    font-size: 36px;
    line-height: 1;
}

.help-service-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-top: 0;
    font-family: "DM Sans";
    line-height: 1.3;
}

.help-service-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: "DM Sans";
}

.help-support-button-wrapper {
    text-align: center;
    margin-top: 70px;
}

.help-support-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    padding: 20px 60px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "DM Sans";
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    letter-spacing: 0.5px;
}

.help-support-button:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.help-support-button:active {
    transform: translateY(-1px);
}

/* Responsive Design for Help Services */
@media (max-width: 1024px) {
    .help-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .help-services-section {
        padding: 80px 20px;
    }

    .help-section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .service-group-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .help-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .help-service-card {
        padding: 35px 25px;
        min-height: 260px;
    }

    .help-service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .help-service-icon {
        font-size: 32px;
    }

    .help-service-heading {
        font-size: 18px;
    }

    .help-service-desc {
        font-size: 14px;
    }

    .help-support-button {
        padding: 18px 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .help-services-section {
        padding: 60px 15px;
    }

    .help-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-group {
        margin-bottom: 40px;
    }

    .service-group-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .help-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .help-service-card {
        padding: 30px 22px;
        min-height: auto;
    }

    .help-service-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .help-service-icon {
        font-size: 28px;
    }

    .help-service-heading {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .help-service-desc {
        font-size: 14px;
    }

    .help-support-button-wrapper {
        margin-top: 50px;
    }

    .help-support-button {
        padding: 16px 40px;
        font-size: 15px;
        width: 100%;
        max-width: 350px;
    }
}

/* Expert Home IT Support Section */
.expert-support-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #E3F2FD 0%, #BBDEFB 50%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
}

.expert-support-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.expert-support-section .container {
    position: relative;
    z-index: 1;
}

.expert-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0 auto 30px;
    font-size: 14px;
    font-weight: 600;
    color: #1a428d;
    font-family: "DM Sans";
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    width: fit-content;
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    letter-spacing: 0.5px;
}

.expert-support-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a428d;
    text-align: center;
    margin-bottom: 25px;
    font-family: "DM Sans";
    line-height: 1.2;
}

.expert-support-intro {
    font-size: 18px;
    color: #424242;
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-family: "DM Sans";
}

.expert-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.expert-support-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 4px 20px rgba(26, 66, 141, 0.12);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    position: relative;
}

.expert-support-card.primary-card {
    border-color: #FF6B35;
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.25);
}

.expert-support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(26, 66, 141, 0.2);
}

.expert-support-card.primary-card:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.expert-support-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
    position: relative;
}

.expert-support-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.expert-support-card:hover .expert-support-icon-wrapper::before {
    opacity: 0.6;
}

.expert-support-card:hover .expert-support-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.4);
}

.expert-support-icon {
    font-size: 48px;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.expert-support-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a428d;
    margin-bottom: 18px;
    margin-top: 0;
    font-family: "DM Sans";
    line-height: 1.3;
}

.expert-support-card-desc {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.7;
    font-family: "DM Sans";
    flex-grow: 1;
}

.expert-support-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "DM Sans";
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.expert-support-cta:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.expert-support-cta:active {
    transform: translateY(0);
}

.expert-support-cta svg {
    transition: transform 0.3s ease;
}

.expert-support-cta:hover svg {
    transform: translateX(3px);
}

/* Responsive Design for Expert Support Section */
@media (max-width: 1024px) {
    .expert-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .expert-support-card.primary-card {
        border-color: #FF6B35;
    }
}

@media (max-width: 768px) {
    .expert-support-section {
        padding: 80px 20px;
    }

    .expert-support-badge {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 25px;
    }

    .expert-support-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .expert-support-intro {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .expert-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .expert-support-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .expert-support-card.primary-card {
        border-color: #FF6B35;
    }

    .expert-support-icon-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 25px;
    }

    .expert-support-icon {
        font-size: 42px;
    }

    .expert-support-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .expert-support-card-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .expert-support-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .expert-support-section {
        padding: 60px 15px;
    }

    .expert-support-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .expert-support-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .expert-support-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .expert-support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expert-support-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .expert-support-card.primary-card {
        border-color: #FF6B35;
    }

    .expert-support-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 22px;
    }

    .expert-support-icon {
        font-size: 38px;
    }

    .expert-support-card-title {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .expert-support-card-desc {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .expert-support-cta {
        padding: 12px 22px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design for What We Offer */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-section {
        padding: 60px 20px;
    }

    .section-title-wrapper {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .title-line {
        max-width: 150px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-image {
        height: 130px;
        padding: 18px;
    }

    .service-title {
        padding: 20px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .what-we-offer-section {
        padding: 50px 15px;
    }

    .section-title-wrapper {
        gap: 15px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .title-line {
        max-width: 100px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image {
        height: 140px;
        padding: 16px;
    }

    .service-title {
        padding: 22px 20px;
        font-size: 16px;
    }
}

/* IT Support Section */
.it-support-section {
    /* padding: 100px 20px; */
    background-color: #fff;
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-wrapper {
    display: flex;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    min-height: 600px;
    align-items: stretch;
}

.support-image-column {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.support-image-overlay {
    display: none;
}

.support-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.support-content-column {
    flex: 0 0 50%;
    width: 50%;
    padding: 60px 50px;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
}

.support-content-column::before,
.support-content-column::after {
    display: none;
}

.support-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-headline {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: left;
    letter-spacing: -0.3px;
    font-family: "DM Sans";
}

/* Ensure heading is visible - override animation initial state */
.support-headline.animate-fade-up {
    opacity: 1;
    animation: fadeUp 0.8s ease-out forwards;
    animation-fill-mode: forwards;
}

.support-subheading {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: left;
    font-weight: 400;
}

.support-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* margin-bottom: 40px; */
}

.support-btn-primary {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    letter-spacing: 0.3px;
    width: fit-content;
    text-decoration: none;
}

.support-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.support-btn-primary:active {
    transform: translateY(0);
}

.support-icon {
    font-size: 20px;
}

.support-link {
    font-size: 16px;
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.support-link:hover {
    color: #1976D2;
    transform: translateX(5px);
}

.support-trust-row {
    display: flex;
    /* gap: 24px; */
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.trust-icon {
    font-size: 18px;
}

.trust-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .trust-text {
        white-space: normal;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 0.8s ease-out 0.6s both;
}

/* Responsive Design for IT Support Section */
@media (max-width: 1024px) {
    .support-wrapper {
        min-height: 650px;
    }

    .support-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .support-content-column {
        padding: 60px 50px;
    }

    .support-headline {
        font-size: 42px;
    }

    .support-subheading {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .it-support-section {
        padding: 60px 20px;
    }

    .support-container {
        padding: 0 15px;
    }

    .support-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .support-image-column {
        flex: 0 0 100%;
        width: 100%;
    }

    .support-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .support-content-column {
        flex: 0 0 100%;
        width: 100%;
        padding: 50px 35px;
    }

    .support-content-wrapper {
        width: 100%;
    }

    .support-headline {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
    }

    .support-subheading {
        font-size: 17px;
        margin-bottom: 30px;
        text-align: left;
    }

    .support-cta-wrapper {
        margin-bottom: 35px;
    }

    .support-btn-primary {
        width: 100%;
        max-width: 400px;
    }

    .support-trust-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .trust-badge {
        font-size: 14px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 10px;
        border-left: 3px solid #1976D2;
    }
}

@media (max-width: 480px) {
    .it-support-section {
        padding: 0px 15px;
    }

    .support-container {
        padding: 0 10px;
    }

    .support-wrapper {
        border-radius: 12px;
    }

    .support-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .support-content-column {
        padding: 40px 25px;
    }

    .support-headline {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .support-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .support-cta-wrapper {
        margin-bottom: 35px;
    }

    .support-btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }

    .support-link {
        font-size: 15px;
    }

    .support-trust-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        border-left: 4px solid #1976D2;
        width: 100%;
        box-sizing: border-box;
        font-weight: 500;
        color: #374151;
    }

    .trust-badge .trust-icon {
        flex-shrink: 0;
        font-size: 20px;
    }

    .trust-badge .trust-text {
        white-space: normal;
        line-height: 1.4;
    }
}

/* Reasons to Rely on Us Section */
.reasons-section {
    padding: 40px 20px;
    background: #ffffff;
    position: relative;
}

.reasons-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 70px 50px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.reasons-header {
    text-align: center;
    margin-bottom: 60px;
}

.reasons-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: "DM Sans";
}

.title-line {
    flex: 1;
    height: 1px;
    background-color: #000000;
    max-width: 200px;
}

.title-text {
    white-space: nowrap;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
    width: 100%;
}

.reason-card {
    background: #F5F8FF;
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.reason-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    position: relative;
}

.reason-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: 
        0 4px 15px rgba(33, 150, 243, 0.25),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.reason-icon {
    font-size: 30px;
    position: relative;
    z-index: 1;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.reason-card:hover .reason-icon-wrapper::before {
    box-shadow: 
        0 6px 25px rgba(33, 150, 243, 0.35),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 0;
    font-family: "DM Sans";
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.reason-subtitle {
    font-size: 15px;
    color: #000000;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

/* Responsive Design for Reasons Section */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .reasons-wrapper {
        padding: 60px 40px;
    }

    .reasons-title {
        font-size: 36px;
    }

    .title-line {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .reasons-section {
        padding: 60px 16px;
    }

    .reasons-section .container {
        padding: 0;
    }

    .reasons-wrapper {
        padding: 40px 20px;
        border-radius: 16px;
        margin: 0;
        width: 100%;
    }

    .reasons-header {
        margin-bottom: 40px;
    }

    .reasons-title {
        font-size: 28px;
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .title-line {
        max-width: 50px;
        min-width: 30px;
        flex: 0 0 auto;
    }

    .title-text {
        white-space: normal;
        text-align: center;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        align-items: stretch;
    }

    .reason-card {
        padding: 35px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .reason-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reason-icon-wrapper::before {
        width: 80px;
        height: 80px;
    }

    .reason-icon {
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .reason-title {
        font-size: 20px;
        margin-bottom: 12px;
        text-align: center;
        line-height: 1.3;
        width: 100%;
    }

    .reason-subtitle {
        font-size: 14px;
        text-align: center;
        line-height: 1.6;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .reasons-section {
        padding: 50px 12px;
    }

    .reasons-section .container {
        padding: 0;
    }

    .reasons-wrapper {
        padding: 32px 16px;
        border-radius: 12px;
        margin: 0;
        width: 100%;
    }

    .reasons-header {
        margin-bottom: 32px;
    }

    .reasons-title {
        font-size: 24px;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .title-line {
        max-width: 30px;
        min-width: 20px;
        flex: 0 0 auto;
    }

    .title-text {
        white-space: normal;
        text-align: center;
        font-size: 24px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        align-items: stretch;
    }

    .reason-card {
        padding: 30px 22px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .reason-icon-wrapper {
        width: 75px;
        height: 75px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .reason-icon-wrapper::before {
        width: 75px;
        height: 75px;
    }

    .reason-icon {
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .reason-title {
        font-size: 19px;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        line-height: 1.3;
    }

    .reason-subtitle {
        font-size: 14px;
        text-align: center;
        width: 100%;
        line-height: 1.6;
    }
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: url('../img/Feature-bg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.7);
    pointer-events: none;
}

.features-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    font-family: "DM Sans";
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
    width: 100%;
}

.feature-card {
    background: linear-gradient(180deg, #E3F2FD 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    position: relative;
    flex-shrink: 0;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%);
    box-shadow: 
        0 4px 20px rgba(33, 150, 243, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
    box-shadow: 
        0 6px 30px rgba(33, 150, 243, 0.5),
        inset 0 0 25px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Features section: Bootstrap Icons with soft circular background */
.features-section .feature-icon-wrapper::before {
    display: block;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.25), inset 0 0 15px rgba(255, 255, 255, 0.4);
}

.features-section .feature-icon-wrapper {
    width: 70px;
    height: 70px;
}

.features-section .feature-icon {
    font-size: 30px;
    color: var(--primary-blue);
    filter: none;
}

.feature-icon {
    font-size: 48px;
    position: relative;
    z-index: 1;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    text-align: center;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
    text-align: center;
    font-family: "DM Sans";
    width: 100%;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: #424242;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    font-weight: 400;
    width: 100%;
}

/* Responsive Design for Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features-main-title {
        font-size: 38px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 20px;
    }

    .features-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .feature-card {
        padding: 35px 25px;
        border-radius: 14px;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-icon-wrapper::before {
        width: 80px;
        height: 80px;
        top: 0;
        left: 0;
    }

    .feature-icon {
        font-size: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .features-section .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .features-section .feature-icon-wrapper::before {
        width: 70px;
        height: 70px;
    }
    .features-section .feature-icon {
        font-size: 30px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 15px;
    }

    .features-main-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 22px;
        border-radius: 12px;
        align-items: center;
    }

    .feature-icon-wrapper {
        width: 75px;
        height: 75px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-icon-wrapper::before {
        width: 75px;
        height: 75px;
        top: 0;
        left: 0;
    }

    .feature-icon {
        font-size: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .features-section .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .features-section .feature-icon-wrapper::before {
        width: 70px;
        height: 70px;
    }
    .features-section .feature-icon {
        font-size: 28px;
    }

    .feature-title {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .feature-description {
        font-size: 13px;
        text-align: center;
        width: 100%;
    }

    .feature-icon-wrapper {
        width: 75px;
        height: 75px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-icon-wrapper::before {
        width: 75px;
        height: 75px;
        top: 0;
        left: 0;
    }

    .feature-icon {
        font-size: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .feature-title {
        font-size: 19px;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        width: 100%;
    }
}

/* Testimonials */
.testimonials {
    position: relative;
    padding: 40px 0 40px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-main) 50%, var(--bg-soft) 100%);
    overflow: hidden;
  }
  
  .testimonials__header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
  }
  
  .testimonials__label {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: var(--light-blue);
    border-radius: 6px;
  }
  
  .testimonials__title {
    margin: 0 0 16px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-text);
    letter-spacing: -0.02em;
  }
  
  .testimonials__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--body-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
  }
  
  .testimonials__wrapper {
    position: relative;
    z-index: 1;
  }
  
  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .testimonial-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }
  
  .testimonial-card--active {
    background: var(--bg-white);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: scale(1.02);
  }
  
  .testimonial-card__quote-icon {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 48px;
    height: 48px;
    color: var(--muted-text);
    opacity: 0.25;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .testimonial-card__quote-icon svg {
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
  }
  
  .testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    position: relative;
    z-index: 1;
  }
  
  .star {
    font-size: 16px;
    color: var(--card-border);
    line-height: 1;
  }
  
  .star--filled {
    color: #EAB308;
  }
  
  .testimonial-card__text {
    margin: 0;
    margin-top: 48px;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text);
    font-weight: 400;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card__divider {
    height: 1px;
    background: var(--card-border);
    margin: 8px 0;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  .testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .testimonial-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-text);
    line-height: 1.3;
  }
  
  .testimonial-card__title {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-text);
    line-height: 1.4;
  }
  
  .testimonials__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--card-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .testimonials__dot--active {
    background: var(--primary-blue);
    width: 24px;
    height: 8px;
  }
  
  .testimonials__dot:hover {
    background: rgba(37, 99, 235, 0.4);
  }

/* Sliding testimonials carousel (moveable with prev/next + swipe) */
.testimonials-slider-wrapper {
  position: relative;
  padding: 0 52px;
}

.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--bg-white);
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonials__nav:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.testimonials__nav--prev { left: 0; }
.testimonials__nav--next { right: 0; }

.testimonials__track-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 32px;
  position: relative;
}

.testimonials-slider-wrapper .testimonials__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-bottom: 0;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.testimonials-slider-wrapper .testimonials__track .testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 28px 24px;
}

@media (min-width: 769px) {
  .testimonials__track-wrap {
    padding: 0 8px;
  }

  .testimonials-slider-wrapper .testimonials__track {
    gap: 24px;
  }

  .testimonials-slider-wrapper .testimonials__track .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    padding: 32px 28px;
  }
}

/* Mobile: track = N*100% so each card = 100% viewport; translate by (100/N)% per slide */
@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    padding: 0 44px;
  }

  .testimonials__track-wrap {
    padding: 0;
    overflow: hidden;
    width: 100%;
  }

  .testimonials-slider-wrapper .testimonials__track {
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .testimonials-slider-wrapper .testimonials__track .testimonial-card {
    margin: 0 !important;
    /* flex/min/max set by JS so each card = 100% viewport (track width = N*100%) */
  }
}

/* Responsive: Public-style testimonials (.testimonials) - printer index */
@media (max-width: 1024px) {
    .testimonials .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        /* gap: 20px; */
    }
    .testimonials .testimonials__title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .testimonials {
        padding: 24px 0 40px;
    }
    .testimonials .testimonials__header {
        margin-bottom: 40px;
    }
    .testimonials .testimonials__title {
        font-size: 32px;
    }
    .testimonials .testimonials__subtitle {
        font-size: 16px;
    }
    .testimonials .testimonials__grid {
        grid-template-columns: 1fr;
        /* gap: 20px; */
        margin-bottom: 32px;
    }
    .testimonials .testimonial-card {
        padding: 28px 24px;
        min-width: 0;
    }
    .testimonials .testimonial-card--active {
        transform: scale(1);
    }
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-wrapper {
        padding: 45px 35px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        align-items: stretch;
        justify-items: stretch;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-height: 260px;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .testimonials-section,
    .pricing-testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-section .testimonials-wrapper,
    .pricing-testimonials-section .testimonials-wrapper {
        padding: 40px 25px;
        border-radius: 12px;
    }

    .testimonials-section .testimonials-title,
    .pricing-testimonials-section .testimonials-title {
        font-size: 28px;
    }

    .testimonials-section .testimonials-title-line,
    .pricing-testimonials-section .testimonials-title-line {
        max-width: 100px;
    }

    .testimonials-section .testimonials-title-wrapper,
    .pricing-testimonials-section .testimonials-title-wrapper {
        gap: 15px;
    }

    .testimonials-section .testimonials-border,
    .pricing-testimonials-section .testimonials-border {
        margin: 18px 0 35px 0;
    }

    .testimonials-section .testimonials-carousel-wrapper,
    .pricing-testimonials-section .testimonials-carousel-wrapper {
        gap: 15px;
    }

    .testimonials-section .testimonials-carousel-container,
    .pricing-testimonials-section .testimonials-carousel-container {
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials-section .testimonials-grid,
    .pricing-testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        align-items: stretch;
    }
    
    .testimonials-section .testimonial-card,
    .pricing-testimonials-section .testimonial-card {
        padding: 28px 22px;
        min-height: 240px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .testimonials-section .testimonial-avatar-link,
    .pricing-testimonials-section .testimonial-avatar-link {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        width: fit-content;
    }

    .testimonials-section .testimonial-avatar,
    .pricing-testimonials-section .testimonial-avatar {
        width: 65px;
        height: 65px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials-section .avatar-silhouette,
    .pricing-testimonials-section .avatar-silhouette {
        width: 45px;
        height: 45px;
    }

    .testimonials-section .star,
    .pricing-testimonials-section .star {
        font-size: 18px;
    }

    .testimonials-section .testimonial-stars,
    .pricing-testimonials-section .testimonial-stars {
        gap: 3px;
        margin: 0 auto 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonials-section .testimonial-text,
    .pricing-testimonials-section .testimonial-text {
        font-size: 14px;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .testimonials-section .testimonial-author,
    .pricing-testimonials-section .testimonial-author {
        font-size: 14px;
        margin: 10px 0 14px 0;
    }

    .testimonials-section .testimonial-nav-btn,
    .pricing-testimonials-section .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section,
    .pricing-testimonials-section {
        padding: 40px 15px;
    }

    .testimonials-section .testimonials-wrapper,
    .pricing-testimonials-section .testimonials-wrapper {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .testimonials-section .testimonials-title,
    .pricing-testimonials-section .testimonials-title {
        font-size: 24px;
    }

    .testimonials-section .testimonials-title-line,
    .pricing-testimonials-section .testimonials-title-line {
        max-width: 50px;
    }

    .testimonials-section .testimonial-author,
    .pricing-testimonials-section .testimonial-author {
        font-size: 13px;
        margin: 8px 0 12px 0;
    }

    .testimonials-section .testimonials-title-wrapper,
    .pricing-testimonials-section .testimonials-title-wrapper {
        gap: 12px;
    }

    .testimonials-section .testimonial-author,
    .pricing-testimonials-section .testimonial-author {
        font-size: 13px;
        margin-top: 10px;
    }

    .testimonials-section .testimonials-border,
    .pricing-testimonials-section .testimonials-border {
        margin: 15px 0 30px 0;
    }

    .testimonials-section .testimonials-carousel-wrapper,
    .pricing-testimonials-section .testimonials-carousel-wrapper {
        gap: 10px;
    }

    .testimonials-section .testimonials-grid,
    .pricing-testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        align-items: stretch;
    }
    
    .testimonials-section .testimonial-card,
    .pricing-testimonials-section .testimonial-card {
        padding: 25px 20px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .testimonials-section .testimonial-avatar-link,
    .pricing-testimonials-section .testimonial-avatar-link {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        width: fit-content;
    }

    .testimonials-section .testimonial-avatar,
    .pricing-testimonials-section .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #FF6B35;
    }

    .testimonials-section .avatar-silhouette,
    .pricing-testimonials-section .avatar-silhouette {
        width: 40px;
        height: 40px;
    }

    .testimonials-section .avatar-silhouette::before,
    .pricing-testimonials-section .avatar-silhouette::before {
        width: 16px;
        height: 16px;
        top: 10px;
    }

    .testimonials-section .avatar-silhouette::after,
    .pricing-testimonials-section .avatar-silhouette::after {
        width: 24px;
        height: 24px;
    }

    .testimonials-section .star,
    .pricing-testimonials-section .star {
        font-size: 16px;
    }

    .testimonials-section .testimonial-stars,
    .pricing-testimonials-section .testimonial-stars {
        gap: 3px;
        margin: 0 auto 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonials-section .testimonial-text,
    .pricing-testimonials-section .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .testimonials-section .testimonial-nav-btn,
    .pricing-testimonials-section .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 22px;
    }
}

/* Contact Form Section - Premium UI */
.contact-section--premium {
    padding: 20px 20px 30px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.contact-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #f0f7ff 0%, #e3f0fd 35%, #d4e8fc 70%, #c5e0fb 100%);
    pointer-events: none;
}

.contact-section__curve {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    background: #fff;
    pointer-events: none;
}

.contact-section__curve--top {
    top: 0;
    border-radius: 0 0 60% 60% / 0 0 30% 30%;
}

.contact-section__curve--bottom {
    bottom: 0;
    border-radius: 60% 60% 0 0 / 30% 30% 0 0;
}

.contact-section__container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
}

.contact-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-section__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.contact-section__subtitle {
    font-size: 1.125rem;
    color: #475569;
    margin: 0;
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}

/* Contact cards - left */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.contact-card--no-link {
    cursor: default;
}

.contact-card--no-link:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.contact-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
}

.contact-card__icon {
    width: 26px;
    height: 26px;
}

.contact-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.contact-card__text {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
}

/* Form card - right */
.contact-form-wrap {
    position: relative;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 40px 24px;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.contact-form-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px;
}

.contact-form.contact-form--float {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group--float {
    position: relative;
}

.form-input--float,
.form-textarea--float {
    width: 100%;
    padding: 14px 20px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input--float:focus,
.form-textarea--float:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-label--float {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #94a3b8;
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.form-group--float:focus-within .form-label--float,
.form-input--float:not(:placeholder-shown) + .form-label--float,
.form-textarea--float:not(:placeholder-shown) + .form-label--float {
    top: 10px;
    transform: translateY(0);
    font-size: 0.75rem;
    color: #3b82f6;
}

.form-group--textarea .form-label--float {
    top: 28px;
    transform: translateY(0);
}

.form-group--textarea:focus-within .form-label--float,
.form-group--textarea .form-textarea--float:not(:placeholder-shown) + .form-label--float {
    top: 10px;
    font-size: 0.75rem;
    color: #3b82f6;
}

.form-textarea--float {
    min-height: 100px;
    resize: vertical;
    padding-top: 20px;
}

.contact-form__submit {
    width: 100%;
    padding: 14px 24px;
    margin-top: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.contact-form__submit:active {
    transform: translateY(0);
}

.contact-form__trust {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin: 14px 0 0;
}

/* Responsive - Contact Section Premium */
@media (max-width: 1024px) {
    .contact-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        padding: 26px 36px 22px;
    }
}

@media (max-width: 768px) {
    .contact-section--premium {
        padding: 48px 16px 64px;
    }

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

    .contact-section__title {
        font-size: 1.75rem;
    }

    .contact-section__subtitle {
        font-size: 1rem;
    }

    .contact-section__grid {
        gap: 32px;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 22px;
        gap: 12px;
    }

    .contact-card__icon-wrap {
        width: 48px;
        height: 48px;
    }

    .contact-card__icon {
        width: 24px;
        height: 24px;
    }

    .contact-card__title {
        margin: 0 0 2px;
    }

    .contact-form-card {
        padding: 24px 24px 20px;
        border-radius: 20px;
    }

    .contact-form-card__title {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }

    .contact-form.contact-form--float {
        gap: 12px;
    }

    .form-input--float,
    .form-textarea--float {
        padding: 16px 18px 10px;
    }

    .form-label--float {
        left: 18px;
    }

    .form-textarea--float {
        min-height: 90px;
    }
}

@media (max-width: 480px) {
    .contact-section--premium {
        padding: 40px 12px 56px;
    }

    .contact-section__curve {
        height: 80px;
    }

    .contact-section__title {
        font-size: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        padding: 18px 20px;
        gap: 10px;
    }

    .contact-form-card {
        padding: 20px 20px 18px;
    }

    .form-input--float,
    .form-textarea--float {
        padding: 14px 16px 8px;
        font-size: 16px;
    }

    .form-label--float {
        left: 16px;
    }

    .form-textarea--float {
        min-height: 80px;
    }

    .contact-form__trust {
        font-size: 0.8125rem;
        margin-top: 12px;
    }
}

/* Footer Section */
.footer-section {
    background: radial-gradient(ellipse at center, #21406C 0%, #161E2E 100%);
    color: #E0E0E0;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
    position: relative;
}

.footer-column {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-column.with-vertical-separator::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #424242;
}

.footer-logo {
    font-size: 36px;
    font-weight: bold;
    color: #E0E0E0;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-description {
    font-size: 15px;
    color: #BDBDBD;
    line-height: 1.7;
    margin: 0 0 25px 0;
    text-align: left;
}

.footer-separator {
    width: 66%;
    height: 1px;
    background-color: #424242;
    margin-top: 10px;
}

.footer-title {
    font-size: 22px;
    font-weight: bold;
    color: #E0E0E0;
    margin: 0 0 25px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-size: 15px;
    color: #BDBDBD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-contact-item {
    font-size: 15px;
    color: #BDBDBD;
    margin: 0;
}

.footer-subscribe {
    margin-top: 20px;
}

.footer-subscribe-title {
    font-size: 18px;
    font-weight: bold;
    color: #E0E0E0;
    margin: 0 0 15px 0;
}

.footer-subscribe-form {
    display: flex;
    gap: 8px;
}

.footer-email-input {
    flex: 1;
    padding: 12px 16px;
    background-color: #303F9F;
    border: none;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 14px;
    font-family: inherit;
}

.footer-email-input::placeholder {
    color: #BDBDBD;
}

.footer-email-input:focus {
    outline: none;
    background-color: #3949AB;
}

.footer-subscribe-btn {
    padding: 12px 24px;
    background-color: #2196F3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background-color: #1976D2;
}

.footer-separator-horizontal {
    width: 100%;
    height: 1px;
    background-color: #424242;
    margin: 30px auto;
    max-width: 1400px;
}

.footer-copyright {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright-text {
    font-size: 14px;
    color: #BDBDBD;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-column.with-vertical-separator::after {
        display: none;
    }

    .footer-column:nth-child(2) {
        border-right: 1px solid #424242;
        padding-right: 35px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 35px;
    }

    .footer-column.with-vertical-separator::after {
        display: none;
    }

    .footer-column:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-subscribe-title {
        font-size: 17px;
    }

    .footer-subscribe-form {
        flex-direction: column;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer-separator-horizontal {
        margin: 25px auto;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 15px 20px;
    }

    .footer-content {
        gap: 35px;
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-separator {
        width: 70%;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-contact-info {
        gap: 12px;
        margin-bottom: 25px;
    }

    .footer-contact-item {
        font-size: 14px;
    }

    .footer-subscribe-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-email-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .footer-subscribe-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .footer-separator-horizontal {
        margin: 20px auto;
    }

    .copyright-text {
        font-size: 13px;
    }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

/* Pricing Hero Section */
.pricing-hero-section {
    padding: 60px 20px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(129, 174, 243, 0.08) 1.5px, transparent 1.5px);
    background-size: 80px 80px, 100px 100px;
    background-position: 0 0, 40px 40px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.pricing-hero-section .container {
    position: relative;
    z-index: 1;
}

.pricing-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-hero-content {
    flex: 1;
}

.pricing-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    font-family: "DM Sans";
    line-height: 1.1;
    letter-spacing: -1px;
}

.pricing-hero-subtext {
    font-size: 20px;
    color: #6b7280;
    margin: 0 0 40px 0;
    font-family: "DM Sans";
    line-height: 1.6;
}

.pricing-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #374151;
    font-family: "DM Sans";
    font-weight: 500;
}

.pricing-hero-highlights li svg {
    color: #FF6B35;
    flex-shrink: 0;
}

.pricing-hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-illustration-graphic {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-illustration-image {
    width: 110%;
    height: 110%;
    object-fit: contain;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    transform: scale(1.1);
}

/* Responsive Design for Pricing Hero Illustration */
@media (max-width: 1024px) {
    .pricing-illustration-graphic {
        max-width: 450px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .pricing-illustration-graphic {
        max-width: 100%;
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .pricing-illustration-graphic {
        height: 250px;
    }
}

/* Billing Toggle Section */
.billing-toggle-section {
    padding: 40px 20px;
    background-color: #fff;
}

.billing-toggle-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #f3f4f6;
    padding: 8px;
    border-radius: 50px;
    position: relative;
    margin-bottom: 12px;
    width: 100%;
    max-width: 500px;
}

.billing-option {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    font-family: "DM Sans";
    padding: 8px 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.billing-option.active {
    color: #1a1a1a;
}

.billing-switch {
    position: relative;
    width: 60px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billing-checkbox {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 11;
    top: 0;
    left: 0;
}

.billing-label {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.billing-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.billing-checkbox:checked + .billing-label .billing-slider {
    transform: translateX(28px);
}

.billing-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: "DM Sans";
    margin-left: 8px;
}

.billing-trust-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
}

/* Responsive Design for Billing Toggle Section */
@media (max-width: 768px) {
    .billing-toggle-section {
        padding: 30px 16px;
        overflow: visible;
    }

    .billing-toggle-wrapper {
        max-width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .billing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 8px 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-wrap: wrap;
    }

    .billing-option {
        font-size: 14px;
        padding: 6px 12px;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .billing-switch {
        width: 56px;
        height: 30px;
        flex-shrink: 0;
        min-width: 56px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .billing-label {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        min-width: 56px;
        min-height: 44px;
        position: relative;
        z-index: 10;
    }

    .billing-slider {
        width: 22px;
        height: 22px;
        top: 4px;
        left: 4px;
    }

    .billing-checkbox:checked + .billing-label .billing-slider {
        transform: translateX(26px);
    }

    /* Badge on own row so it's never cut off */
    .billing-badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-left: 0;
        margin-top: 10px;
        flex-basis: 100%;
        flex-grow: 0;
        flex-shrink: 0;
        white-space: nowrap;
        text-align: center;
        display: block;
    }

    .billing-trust-text {
        font-size: 13px;
        margin-top: 8px;
        padding: 0 4px;
    }
}

@media (max-width: 480px) {
    .billing-toggle-section {
        padding: 25px 12px;
        overflow: visible;
    }

    .billing-toggle-wrapper {
        padding: 0 4px;
        box-sizing: border-box;
    }

    .billing-toggle {
        gap: 6px;
        padding: 6px 8px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .billing-option {
        font-size: 13px;
        padding: 5px 8px;
        flex: 0 0 auto;
        text-align: center;
        white-space: nowrap;
    }

    .billing-switch {
        width: 52px;
        height: 28px;
        flex-shrink: 0;
        margin: 0 2px;
        min-width: 52px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .billing-label {
        min-width: 52px;
        min-height: 44px;
        position: relative;
        z-index: 10;
    }

    .billing-slider {
        width: 20px;
        height: 20px;
        top: 4px;
        left: 4px;
    }

    .billing-checkbox:checked + .billing-label .billing-slider {
        transform: translateX(24px);
    }

    /* Badge on own row, centered, fully visible */
    .billing-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-left: 0;
        margin-top: 8px;
        flex-basis: 100%;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
        display: block;
    }

    .billing-trust-text {
        font-size: 12px;
        margin-top: 10px;
        padding: 0 4px;
    }
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-popular {
    border: 2px solid #FF6B35;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.pricing-card-popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF6B35, #FF8C50);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

.pricing-card-enterprise {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.pricing-card-enterprise .pricing-plan-name,
.pricing-card-enterprise .pricing-plan-tagline,
.pricing-card-enterprise .pricing-amount,
.pricing-card-enterprise .pricing-currency,
.pricing-card-enterprise .pricing-price,
.pricing-card-enterprise .pricing-features li {
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: "DM Sans";
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.pricing-card-enterprise .pricing-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.pricing-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    stroke-width: 2.5;
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: "DM Sans";
}

.pricing-plan-tagline {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
}

.pricing-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    vertical-align: top;
    font-family: "DM Sans";
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: "DM Sans";
    line-height: 1;
}

.pricing-period {
    font-size: 18px;
    color: #6b7280;
    font-family: "DM Sans";
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #374151;
    margin-bottom: 16px;
    font-family: "DM Sans";
    line-height: 1.5;
}

.pricing-features li svg {
    color: #FF6B35;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta-btn {
    display: block;
    text-align: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans";
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.pricing-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.pricing-cta-btn-popular {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

/* Feature Comparison Table */
.feature-comparison-section {
    padding: 40px 20px;
    background-color: #fff;
}

.comparison-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
    font-family: "DM Sans";
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 1400px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.comparison-table th {
    padding: 24px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "DM Sans";
    border-bottom: 2px solid #e5e7eb;
}

.comparison-table th:first-child {
    font-size: 18px;
    text-align: left;
}

.comparison-popular {
    background: rgba(255, 107, 53, 0.05) !important;
    position: relative;
}

.comparison-table thead .comparison-popular::after {
    content: 'Most Popular';
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    font-family: "DM Sans";
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: #374151;
    font-family: "DM Sans";
    border-bottom: 1px solid #f3f4f6;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table td svg {
    color: #10b981;
    margin: 0 auto;
    display: block;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
}

/* Why Choose Section */
/* Why Choose Section - Consolidated to use .reasons-section */
/* All why-choose sections now use .reasons-section base */


.why-choose-pricing-section .reasons-wrapper {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

/* Legacy why-choose classes - now use .reason-card, .reason-icon-wrapper, .reason-title, .reason-subtitle */
.why-choose-item {
    /* Use .reason-card instead */
    background: #F5F8FF;
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.why-choose-icon-wrapper {
    /* Use .reason-icon-wrapper instead */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    position: relative;
}

.why-choose-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: 
        0 4px 15px rgba(33, 150, 243, 0.25),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.why-choose-icon-wrapper svg {
    color: #FF6B35;
    position: relative;
    z-index: 1;
}

.why-choose-item-title {
    /* Use .reason-title instead */
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 0;
    font-family: "DM Sans";
}

.why-choose-item-text {
    /* Use .reason-subtitle instead */
    font-size: 15px;
    color: #000000;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Testimonials Section - Consolidated */
/* All testimonials sections use .testimonials-section base */

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid #FF6B35;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin: 0 0 24px 0;
    font-family: "DM Sans";
    font-style: italic;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: "DM Sans";
}

.testimonial-company {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #FF6B35;
    width: 32px;
    border-radius: 6px;
}

/* Printer Service Detail Section */
.printer-service-detail-section {
    padding: 80px 20px;
    background-color: #fff;
}

.printer-service-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.printer-service-image-column {
    flex: 1;
    min-width: 0;
}

.printer-service-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.printer-service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.printer-service-content-column {
    flex: 1;
    min-width: 0;
}

.printer-service-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: "DM Sans";
    line-height: 1.2;
}

.printer-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    font-family: "DM Sans";
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.printer-hero-subtitle {
    font-size: 18px;
    color: #475569;
    margin: 0 0 18px 0;
    font-family: "DM Sans";
    line-height: 1.6;
    max-width: 56ch;
}

.printer-service-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 20px;
    color: #8BC34A;
    line-height: 1;
}

.rating-count {
    font-size: 16px;
    color: #6b7280;
    font-family: "DM Sans";
}

.printer-hero-trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.printer-hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0f172a;
    font-family: "DM Sans";
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.trust-chip svg {
    color: #20b2aa;
}

.printer-hero-benefits {
    margin-top: 8px;
}

.benefits-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    font-family: "DM Sans";
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-family: "DM Sans";
    color: #0f172a;
    font-weight: 600;
    line-height: 1.35;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(32, 178, 170, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #20b2aa;
    flex-shrink: 0;
    margin-top: 1px;
}

.printer-hero-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.printer-hero-copy {
    margin-top: 0;
}

.printer-pricing-float {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.printer-pricing-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: "DM Sans";
}

.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zip-code-input-wrapper {
    width: 100%;
}

.zip-code-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: "DM Sans";
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.zip-code-input:focus {
    outline: none;
    border-color: #FF6B35;
}

.get-price-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "DM Sans";
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.get-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.get-price-btn:active {
    transform: translateY(0);
}

/* Pricing Display Section */
.printer-pricing-display {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Availability */
.service-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.availability-check {
    color: #4caf50;
    font-size: 18px;
    font-weight: bold;
}

.availability-text {
    font-size: 16px;
    color: #1a1a1a;
    font-family: "DM Sans";
    font-weight: 500;
}

#displayZipCode {
    font-weight: 700;
    color: #2e7d32;
}

.different-zip-link {
    margin-left: auto;
    color: #0ea5e9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans";
    transition: color 0.3s ease;
}

.different-zip-link:hover {
    color: #0284c7;
    text-decoration: underline;
}

.pricing-microcopy {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #64748b;
    font-family: "DM Sans";
    font-size: 12px;
    font-weight: 600;
}

.pricing-microcopy-bottom {
    justify-content: flex-start;
    margin-top: 14px;
}

.microcopy-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.microcopy-item svg {
    color: #10b981;
}

.microcopy-dot {
    opacity: 0.6;
}

.zip-code-error {
    margin-top: 8px;
    color: #dc2626;
    font-size: 13px;
    font-family: "DM Sans";
    font-weight: 600;
}

.printer-contact-info-hero {
    margin-top: 4px;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .printer-service-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .printer-service-detail-section {
        padding: 60px 15px;
    }

    .printer-service-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .printer-service-title {
        font-size: 32px;
    }

    .printer-pricing-card,
    .printer-pricing-display {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .printer-service-detail-section {
        padding: 40px 15px;
    }

    .printer-service-title {
        font-size: 28px;
    }

    .printer-pricing-card,
    .printer-pricing-display {
        padding: 16px;
    }
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-option {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: #d1d5db;
}

.pricing-option-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.pricing-radio {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF6B35;
    flex-shrink: 0;
}

.pricing-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-option-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "DM Sans";
}

.pricing-option-price {
    font-size: 16px;
    color: #424242;
    font-family: "DM Sans";
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: #9ca3af;
}

.price-new {
    font-weight: 700;
    color: #1a1a1a;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
}

.learn-more-link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans";
    margin-top: 4px;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #FF8C50;
    text-decoration: underline;
}

/* Members Badge */
.members-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: "DM Sans";
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Book Now Button */
.book-now-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    background: #20b2aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.book-now-btn:hover {
    background: #1a9d96;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}

.book-now-btn:active {
    transform: translateY(0);
}

/* Zip Code Error */
.zip-code-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
    font-family: "DM Sans";
}

.printer-contact-info {
    margin-bottom: 30px;
}

.printer-service-inclusions {
    margin-top: 30px;
}

.inclusions-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: "DM Sans";
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #424242;
    font-family: "DM Sans";
}

.inclusion-item svg {
    color: #8BC34A;
    flex-shrink: 0;
}

/* Modern Booking Form Section */
.modern-booking-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: calc(100vh - 200px);
}

.modern-booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: start;
}

/* Form Card */
.booking-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

/* Form Header */
.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: "DM Sans";
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
    line-height: 1.5;
}

/* Progress Steps */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: "DM Sans";
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
    font-family: "DM Sans";
}

.progress-step.active .step-label {
    color: #667eea;
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 16px -20px 16px;
}

/* Modern Form Styles */
.modern-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    font-family: "DM Sans";
    line-height: 1.4;
}

.form-label-modern svg {
    color: #667eea;
    flex-shrink: 0;
}

.input-wrapper {
    position: relative;
}

.form-input-modern,
.form-select-modern,
.form-textarea-modern {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: "DM Sans";
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background-color: #fafbfc;
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: #9ca3af;
}

.form-select-modern {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 100px;
    font-family: "DM Sans";
    line-height: 1.6;
}

.form-disclaimer-modern {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 0 0;
    font-family: "DM Sans";
    line-height: 1.5;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #fbbf24;
}

.form-disclaimer-modern svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA Button */
.form-actions {
    margin-top: 8px;
}

.cta-button-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.cta-button-primary:active {
    transform: translateY(0);
}

.cta-button-primary svg {
    width: 20px;
    height: 20px;
}

/* Trust Panel Card */
.trust-panel-card {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
    color: #ffffff;
}

.trust-panel-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans";
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

/* Trust Points */
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-point-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

.trust-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: "DM Sans";
}

.trust-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-family: "DM Sans";
    line-height: 1.5;
}

/* Important Notice */
.important-notice-modern {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.notice-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    font-family: "DM Sans";
}

.important-notice-modern p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    font-family: "DM Sans";
}

/* Support Contact */
.support-contact {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.support-contact p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-family: "DM Sans";
}

.support-contact a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.support-contact a:hover {
    opacity: 0.8;
}

/* Booking Form Section (Legacy) */
.booking-form-section {
    padding: 80px 20px;
    background-color: #ffffff;
    min-height: calc(100vh - 200px);
}

.booking-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

/* Left Side - Form */
.booking-form-left {
    flex: 1;
}

.printer-booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "DM Sans";
    line-height: 1.4;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: "DM Sans";
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: "DM Sans";
}

.form-disclaimer {
    font-size: 13px;
    color: #9ca3af;
    margin: 8px 0 0 0;
    font-family: "DM Sans";
    line-height: 1.5;
}

/* Add To Cart Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background-color: #20b2aa;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
    margin-top: 8px;
}

.add-to-cart-btn:hover {
    background-color: #1a9d96;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Right Side - Important Notice */
.booking-form-right {
    position: sticky;
    top: 100px;
}

.important-notice-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.important-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: "DM Sans";
    line-height: 1.3;
}

.important-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.important-item {
    font-size: 15px;
    color: #424242;
    font-family: "DM Sans";
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.important-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 18px;
}

.contact-text {
    font-size: 16px;
    color: #424242;
    font-family: "DM Sans";
    margin: 0;
    line-height: 1.6;
}

.chat-link,
.phone-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.chat-link:hover,
.phone-link:hover {
    color: #FF8C50;
    text-decoration: underline;
}

.printer-service-inclusions {
    margin-top: 30px;
}

.inclusions-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: "DM Sans";
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #424242;
    font-family: "DM Sans";
    line-height: 1.6;
}

.inclusion-item svg {
    flex-shrink: 0;
    color: #8BC34A;
    margin-top: 2px;
}

.inclusion-item span {
    flex: 1;
}

/* Printer Trust Strip */
.printer-trust-strip {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 40px 20px;
    width: 100%;
}

.trust-strip-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: "DM Sans";
}

.trust-item svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

/* Responsive Design for Printer Service Detail */
@media (max-width: 1024px) {
    .printer-service-wrapper {
        gap: 40px;
    }

    .printer-service-title {
        font-size: 36px;
    }

    .modern-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .modern-feature-card.featured-card {
        transform: scale(1);
    }

    .faq-content-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-help-box {
        position: relative;
        top: 0;
    }

    .booking-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form-right {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .printer-service-detail-section {
        padding: 60px 20px;
    }

    .printer-service-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .printer-service-image-column {
        order: 2;
    }

    .printer-service-content-column {
        order: 1;
    }

    .printer-service-title {
        font-size: 32px;
    }

    .printer-pricing-display {
        padding: 28px;
    }

    .service-availability {
        flex-wrap: wrap;
    }

    .trust-strip-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
    }

    .modern-faq-section {
        padding: 80px 20px;
        overflow-x: hidden;
    }
    
    .modern-faq-section .container {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .faq-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-direction: column;
        overflow-x: hidden;
    }
    
    .faq-accordion-wrapper {
        width: 100%;
        max-width: 100%;
        order: 1;
        flex: 0 0 auto;
    }

    .modern-faq-title {
        font-size: 36px;
        margin-bottom: 32px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .faq-help-box {
        position: relative !important;
        top: 0 !important;
        order: 2;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0;
        flex: 0 0 auto;
    }
    
    .modern-faq-accordion {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-accordion-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .modern-features-section {
        padding: 80px 20px;
    }

    .features-main-heading {
        font-size: 40px;
    }

    .features-subtitle {
        font-size: 18px;
    }

    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .modern-feature-card.featured-card {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .printer-service-detail-section {
        padding: 40px 15px;
    }

    .printer-service-title {
        font-size: 28px;
    }

    .printer-pricing-card {
        padding: 24px;
    }

    .pricing-card-title {
        font-size: 18px;
    }

    .printer-pricing-display {
        padding: 24px;
    }

    .service-availability {
        flex-wrap: wrap;
        gap: 6px;
    }

    .availability-text {
        font-size: 14px;
    }

    .different-zip-link {
        font-size: 13px;
        margin-left: 0;
        width: 100%;
    }

    .pricing-option {
        padding: 14px;
    }

    .pricing-option-name {
        font-size: 15px;
    }

    .pricing-option-price {
        font-size: 14px;
    }

    .price-note {
        font-size: 13px;
    }

    .book-now-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .members-badge {
        font-size: 11px;
        padding: 3px 10px;
        top: -8px;
        right: 12px;
    }

    .trust-item {
        font-size: 16px;
    }

    .trust-item svg {
        width: 24px;
        height: 24px;
    }

    .printer-faq-section {
        padding: 60px 15px;
    }

    .modern-booking-section {
        padding: 40px 15px;
    }

    .modern-booking-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-form-card {
        padding: 32px 24px;
    }

    .form-main-title {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 15px;
    }

    .trust-panel-card {
        position: relative;
        top: 0;
    }

    .form-label-modern {
        font-size: 14px;
        gap: 8px;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .modern-booking-form {
        gap: 18px;
    }

    .form-group-modern {
        gap: 8px;
    }

    .form-label-modern svg {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }

    .form-input-modern,
    .form-select-modern,
    .form-textarea-modern {
        font-size: 14px;
        padding: 12px 14px;
    }

    .form-textarea-modern {
        min-height: 110px;
    }

    .form-disclaimer-modern {
        margin-top: 10px;
        padding: 10px 12px;
        gap: 8px;
    }

    .cta-button-primary {
        font-size: 16px;
        padding: 14px 24px;
    }

    .modern-faq-section {
        padding: 60px 15px;
        overflow-x: hidden;
    }
    
    .modern-faq-section .container {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .faq-content-wrapper {
        gap: 32px;
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-direction: column;
        overflow-x: hidden;
    }
    
    .faq-accordion-wrapper {
        width: 100%;
        max-width: 100%;
        order: 1;
        flex: 0 0 auto;
    }

    .modern-faq-title {
        font-size: 32px;
        margin-bottom: 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .faq-accordion-item {
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .faq-question-btn {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .faq-question-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .faq-icon-wrapper {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .faq-question-text {
        font-size: 16px;
        word-wrap: break-word;
        text-align: center;
        width: 100%;
    }

    .faq-chevron {
        margin: 0 auto;
    }

    .faq-answer {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-answer p {
        font-size: 15px;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .faq-help-box {
        position: relative !important;
        top: 0 !important;
        padding: 32px 24px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0;
        order: 2;
        flex: 0 0 auto;
    }
    
    .help-box-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .help-cta-btn-primary,
    .help-cta-btn-secondary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .help-box-title {
        font-size: 20px;
        width: 100%;
        max-width: 100%;
    }

    .help-box-text {
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .modern-faq-accordion {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .booking-form-section {
        padding: 40px 15px;
    }

    .booking-form-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-form-right {
        position: relative;
        top: 0;
    }

    .important-notice-box {
        padding: 20px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 15px;
        padding: 10px 14px;
    }

    .add-to-cart-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .modern-features-section {
        padding: 60px 15px;
    }

    .features-main-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .modern-feature-card {
        padding: 32px 24px;
    }

    .modern-feature-card.featured-card {
        transform: scale(1);
    }

    .modern-feature-card.featured-card:hover {
        transform: translateY(-8px);
    }

    .feature-icon-wrapper {
        margin-bottom: 20px;
    }

    .feature-icon-img {
        width: 68px;
        height: 68px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .feature-card-description {
        font-size: 15px;
    }

    .features-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

/* Printer FAQ Section */
/* Modern FAQ Section */
.modern-faq-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.faq-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* FAQ Accordion */
.faq-accordion-wrapper {
    flex: 1;
}

.modern-faq-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 48px 0;
    font-family: "DM Sans";
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.modern-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.faq-accordion-item.active {
    background: #f0f9ff;
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.faq-question-btn {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: scale(1.05);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "DM Sans";
    line-height: 1.4;
}

.faq-accordion-item.active .faq-question-text {
    color: #1e40af;
}

.faq-chevron {
    color: #6b7280;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #6b7280;
    font-family: "DM Sans";
    line-height: 1.6;
    margin: 0;
    padding-left: 56px;
}

/* Help Box */
.faq-help-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
    position: sticky;
    top: 100px;
    text-align: center;
}

.help-box-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
}

.help-box-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-family: "DM Sans";
    line-height: 1.3;
}

.help-box-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    font-family: "DM Sans";
    line-height: 1.5;
}

.help-box-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-cta-btn-primary,
.help-cta-btn-secondary {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.help-cta-btn-primary {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.help-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.help-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.help-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Modern Tech Support Features Section */
.modern-features-section {
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.features-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.modern-features-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: "DM Sans";
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Features Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* Glassmorphism Feature Cards */
.modern-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.modern-feature-card.featured-card {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(79, 172, 254, 0.3);
    box-shadow: 
        0 12px 40px rgba(79, 172, 254, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.06);
    transform: scale(1.02);
}

.modern-feature-card.featured-card:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 
        0 24px 56px rgba(79, 172, 254, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper - no background, icon only */
.feature-icon-wrapper {
    width: auto;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.feature-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

/* Prevent legacy feature icon pseudo-element from covering modern feature icons */
.modern-features-section .feature-icon-wrapper::before {
    content: none !important;
}

.modern-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Feature Badge */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: "DM Sans";
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.verified-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.same-day-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.guarantee-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.feature-badge svg {
    width: 14px;
    height: 14px;
}

/* Card Content */
.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    font-family: "DM Sans";
    line-height: 1.3;
}

.feature-card-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
    line-height: 1.6;
}

/* CTA Buttons */
.features-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    min-width: 180px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.cta-btn-primary:active {
    transform: translateY(0);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-btn-secondary:active {
    transform: translateY(0);
}

/* Modern Features - Responsive */
@media (max-width: 992px) {
    .modern-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .modern-feature-card.featured-card {
        transform: scale(1);
    }

    .modern-feature-card.featured-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .modern-features-section {
        padding: 60px 20px;
        overflow-x: hidden;
    }

    .modern-features-section .container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-main-heading {
        font-size: 32px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .modern-feature-card {
        padding: 32px 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
    }

    .modern-feature-card .feature-badge {
        align-self: center;
    }

    .features-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .modern-features-section {
        padding: 40px 15px;
    }

    .features-main-heading {
        font-size: 28px;
    }

    .features-subtitle {
        font-size: 15px;
    }

    .modern-feature-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .feature-icon-wrapper {
        margin-bottom: 20px;
    }

    .feature-icon-img {
        width: 60px;
        height: 60px;
    }

    .feature-card-title {
        font-size: 18px;
    }

    .feature-card-description {
        font-size: 14px;
    }
}

/* FAQ Section */
.pricing-faq-section {
    padding: 20px 20px;
    background-color: #fff;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
    font-family: "DM Sans";
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: "DM Sans";
}

.faq-icon {
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #FF6B35;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-family: "DM Sans";
}

/* Final CTA Section */
.pricing-final-cta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
    position: relative;
    overflow: hidden;
}

.pricing-final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    font-family: "DM Sans";
}

.final-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    font-family: "DM Sans";
    line-height: 1.6;
}

.final-cta-btn {
    display: inline-block;
    padding: 20px 45px;
    background: #fff;
    color: #FF6B35;
    font-size: 18px;
    font-weight: 700;
    font-family: "DM Sans";
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Pricing Page */
@media (max-width: 1200px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-hero-title {
        font-size: 40px;
    }

    .pricing-hero-subtext {
        font-size: 18px;
    }

    .pricing-cards-section {
        padding: 60px 20px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
    }

    .comparison-table {
        min-width: 800px;
    }

    .comparison-table th {
        padding: 20px 16px;
        font-size: 15px;
        text-align: center;
    }

    .comparison-table th:first-child {
        font-size: 16px;
        padding-left: 16px;
        text-align: left;
    }

    .comparison-popular {
        position: relative;
    }

    .comparison-table thead .comparison-popular::after {
        content: 'Most Popular';
        position: absolute;
        top: 6px;
        right: 6px;
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 3px 6px;
        border-radius: 8px;
        font-family: "DM Sans";
        white-space: nowrap;
    }

    .comparison-table td {
        padding: 16px;
        font-size: 14px;
        text-align: center;
    }

    .comparison-table td:first-child {
        font-size: 14px;
        padding-left: 16px;
        text-align: left;
        font-weight: 600;
    }

    .comparison-table td svg {
        width: 18px;
        height: 18px;
        margin: 0 auto;
        display: block;
    }

    /* Use .reasons-grid instead of .why-choose-grid */
    .why-choose-pricing-section .reasons-grid,
    .why-contact-section .reasons-grid,
    .reasons-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 30px;
    }

    .final-cta-title {
        font-size: 36px;
    }

    .final-cta-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pricing-hero-section {
        padding: 20px 15px 30px;
    }

    .pricing-hero-title {
        font-size: 32px;
    }

    .pricing-hero-subtext {
        font-size: 16px;
    }

    .pricing-cards-section {
        padding: 50px 15px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price {
        font-size: 48px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
    }

    .comparison-table {
        min-width: 700px;
        border-radius: 12px;
    }

    .comparison-table th {
        padding: 16px 12px;
        font-size: 13px;
        text-align: center;
    }

    .comparison-table th:first-child {
        font-size: 14px;
        padding-left: 12px;
        min-width: 100px;
        text-align: left;
    }

    .comparison-popular {
        position: relative;
    }

    .comparison-table thead .comparison-popular::after {
        content: 'Most Popular';
        position: absolute;
        top: 4px;
        right: 4px;
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C50 100%);
        color: #fff;
        font-size: 8px;
        font-weight: 700;
        padding: 2px 5px;
        border-radius: 6px;
        font-family: "DM Sans";
        white-space: nowrap;
    }

    .comparison-table td {
        padding: 14px 12px;
        font-size: 13px;
        text-align: center;
    }

    .comparison-table td:first-child {
        font-size: 13px;
        padding-left: 12px;
        font-weight: 600;
        min-width: 100px;
        text-align: left;
    }

    .comparison-table td svg {
        width: 16px;
        height: 16px;
        margin: 0 auto;
        display: block;
    }

    .comparison-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .final-cta-text {
        font-size: 16px;
    }

    .final-cta-btn {
        padding: 18px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    padding: 70px 20px 80px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 152, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.contact-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-text {
    flex: 1;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: "DM Sans", sans-serif;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.contact-hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.contact-cta-call {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.contact-cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.contact-cta-message {
    background: #fff;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.contact-cta-message:hover {
    background: #FF6B35;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cta-icon {
    font-size: 20px;
}

.contact-hero-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF6B35;
}

.contact-link-separator {
    color: #cbd5e0;
}

.contact-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Contact Options Section */
.contact-options-section {
    padding: 40px 20px;
    background: #ffffff;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* Ensure contact-options cards don't inherit premium .contact-card row layout */
.contact-options-section .contact-card.glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eef6ff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.glass-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: "DM Sans", sans-serif;
}

.contact-card-text {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-card-link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    margin-top: auto;
}

.contact-card-link:hover {
    color: #FF8C42;
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: "DM Sans", sans-serif;
}

.contact-form-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: "DM Sans", sans-serif;
}

.required {
    color: #FF6B35;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    color: #1a1a1a;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    font-family: "DM Sans", sans-serif;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-microcopy {
    text-align: center;
    font-size: 14px;
    color: #718096;
    margin-top: 12px;
}

/* Office Info + Map Section */
.office-map-section {
    padding: 40px 20px;
    background: #ffffff;
}

.office-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.office-info-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: "DM Sans", sans-serif;
}

.office-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.office-info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.office-info-content {
    flex: 1;
}

.office-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "DM Sans", sans-serif;
}

.office-info-value {
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    font-weight: 500;
}

.office-info-value:hover {
    color: #FF6B35;
}

.office-map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Why Contact Us Section */
/* Why Contact Section - Consolidated to use .reasons-section */
/* All why-contact sections now use .reasons-section base */

.why-contact-section .reasons-wrapper {
    background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
}

/* Trust Reviews Section */
.trust-reviews-section {
    padding: 20px;
    background: #ffffff;
}

.trust-reviews-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-reviews-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: "DM Sans", sans-serif;
}

.trustpilot-widget {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #e2e8f0;
}

.trustpilot-rating {
    margin-bottom: 20px;
}

.trustpilot-stars {
    font-size: 32px;
    color: #00b67a;
    margin-bottom: 12px;
    letter-spacing: 4px;
}

.trustpilot-score {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: "DM Sans", sans-serif;
}

.trustpilot-reviews {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

.trustpilot-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: "DM Sans", sans-serif;
}

.trustpilot-link:hover {
    color: #FF8C42;
}

/* Footer CTA Section */
.footer-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    text-align: center;
}

.footer-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: "DM Sans", sans-serif;
}

.footer-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #FF6B35;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: "DM Sans", sans-serif;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    color: #ffffff;
    font-size: 14px;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 48px;
    }

    .office-map-wrapper {
        grid-template-columns: 1fr;
    }

    .office-map {
        height: 400px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 20px 60px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-hero-ctas {
        flex-direction: column;
    }

    .contact-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-title {
        font-size: 32px;
    }

    .footer-cta-btn {
        width: 100%;
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .office-info-title {
        font-size: 28px;
    }

    .why-contact-section .reasons-title,
    .why-choose-pricing-section .reasons-title {
        font-size: 32px;
    }

    .footer-cta-title {
        font-size: 28px;
    }
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

.cart-page {
    min-height: 100vh;
    background-color: #ffffff;
    padding: 40px 20px 80px;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px 0;
    font-family: "DM Sans";
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Modern Pricing Cards */
.pricing-cards-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 32px;
}

.pricing-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.pricing-card-modern.pricing-card-selected {
    border-color: #20b2aa;
    box-shadow: 0 4px 16px rgba(32, 178, 170, 0.2);
    background: #f0fdfa;
}

.pricing-card-featured {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0ea5e9;
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
}

.pricing-card-featured.pricing-card-selected {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-color: #0284c7;
    color: #ffffff;
}

.popular-badge-modern {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #20b2aa 0%, #1a9d96 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: "DM Sans";
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.savings-badge-modern {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    font-family: "DM Sans";
}

.pricing-card-header {
    margin-bottom: 16px;
}

.pricing-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: "DM Sans";
}

.pricing-card-featured.pricing-card-selected .pricing-card-name {
    color: #ffffff;
}

.pricing-card-price {
    margin-bottom: 12px;
}

.pricing-amount {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: "DM Sans";
    line-height: 1;
    display: block;
}

.pricing-card-featured.pricing-card-selected .pricing-amount {
    color: #ffffff;
}

.pricing-period {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    font-family: "DM Sans";
    display: block;
    margin-top: 4px;
}

.pricing-card-featured.pricing-card-selected .pricing-period {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    font-family: "DM Sans";
    line-height: 1.5;
}

.pricing-card-featured.pricing-card-selected .pricing-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Cart Card */
.cart-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: "DM Sans";
    line-height: 1.4;
}

.cart-item-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-family: "DM Sans";
}

.cart-line-label {
    color: #6b7280;
}

.cart-line-value {
    color: #374151;
    font-weight: 500;
}

.cart-line-discount {
    color: #10b981;
}

.cart-item-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.cart-action-link {
    font-size: 14px;
    color: #20b2aa;
    text-decoration: none;
    font-family: "DM Sans";
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.cart-action-link:hover {
    color: #1a9d96;
    text-decoration: underline;
}

.cart-remove-btn {
    color: #ef4444;
    position: relative;
}

.cart-remove-btn:hover {
    color: #dc2626;
    text-decoration: underline;
}

.cart-item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.cart-qty {
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans";
    color: #1a1a1a;
    background: #ffffff;
    cursor: pointer;
    min-width: 70px;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

.cart-qty:hover {
    border-color: #20b2aa;
}

.cart-qty:focus {
    outline: none;
    border-color: #20b2aa;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.cart-item-old {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-family: "DM Sans";
}

.cart-item-new {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "DM Sans";
}

.cart-line-discount {
    color: #10b981;
    font-weight: 600;
}

/* Cart Divider */
.cart-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}

/* Cart Help Row */
.cart-help-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.cart-help-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "DM Sans";
}

.cart-shop-services {
    padding: 10px 20px;
    border: 2px solid #20b2aa;
    border-radius: 8px;
    color: #20b2aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans";
    transition: all 0.3s ease;
}

.cart-shop-services:hover {
    background: #20b2aa;
    color: #ffffff;
}

/* Membership Section */
.membership-section {
    padding-top: 32px;
}

.membership-kicker {
    font-size: 13px;
    font-weight: 700;
    color: #20b2aa;
    margin-bottom: 12px;
    font-family: "DM Sans";
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.membership-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 28px 0;
    font-family: "DM Sans";
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.membership-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.membership-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.membership-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0ea5e9;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.membership-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    font-family: "DM Sans";
}

.membership-item-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-family: "DM Sans";
}

.membership-footnote {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 16px;
    font-family: "DM Sans";
}

/* Order Summary */
.cart-right {
    position: sticky;
    top: 100px;
}

.order-summary-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    font-family: "DM Sans";
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.summary-label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    font-family: "DM Sans";
    margin-bottom: 4px;
}

.summary-sub {
    font-size: 13px;
    color: #6b7280;
    font-family: "DM Sans";
}

.summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "DM Sans";
    text-align: right;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.summary-total-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "DM Sans";
    margin-bottom: 4px;
}

.summary-saved-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin-top: 8px;
    font-family: "DM Sans";
    background: #ecfdf5;
    padding: 6px 12px;
    border-radius: 8px;
    width: fit-content;
}

.summary-saved-modern svg {
    flex-shrink: 0;
}

.summary-saved {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 600;
    font-family: "DM Sans";
}

.summary-total-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "DM Sans";
}

.promo-box {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.promo-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    font-family: "DM Sans";
}

.promo-sub {
    font-size: 13px;
    color: #6b7280;
    font-family: "DM Sans";
}

.checkout-btn-modern {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #20b2aa 0%, #1a9d96 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: "DM Sans";
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(32, 178, 170, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.checkout-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.checkout-btn-modern:hover::before {
    left: 100%;
}

.checkout-btn-modern:hover {
    background: linear-gradient(135deg, #1a9d96 0%, #158d87 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 178, 170, 0.4);
}

.checkout-btn-modern:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(32, 178, 170, 0.3);
}

.checkout-btn-modern svg {
    flex-shrink: 0;
}

.secure-checkout-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 12px;
    font-family: "DM Sans";
    font-weight: 500;
}

.secure-checkout-text svg {
    flex-shrink: 0;
    color: #10b981;
}

/* Responsive */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-right {
        position: relative;
        top: 0;
    }

    .pricing-cards-modern {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 20px 15px 60px;
    }

    .cart-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .pricing-cards-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-modern {
        padding: 20px;
    }

    .pricing-amount {
        font-size: 32px;
    }

    .cart-item {
        flex-direction: row;
        gap: 12px;
    }

    .cart-item-img {
        width: 45px;
        height: 45px;
    }

    .cart-item-side {
        align-items: flex-end;
    }

    .cart-item-main {
        flex: 1;
        min-width: 0;
    }

    .cart-help-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cart-shop-services {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cart-title {
        font-size: 24px;
    }

    .cart-card {
        padding: 16px;
    }

    .order-summary {
        padding: 20px;
    }

    .membership-grid {
        gap: 16px;
    }
}

/* ========================================
   Chat Widget Styles
   ======================================== */

/* Chat Widget Container */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Chat Icon Button */
.chat-widget__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10001;
}

.chat-widget__icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
}

.chat-widget__icon:active {
    transform: scale(0.95);
}

.chat-widget__icon svg {
    width: 24px;
    height: 24px;
}

/* Chat Box */
.chat-widget__box {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chat-widget__box.chat-widget__box--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Chat Header */
.chat-widget__header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.chat-widget__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chat-widget__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-widget__avatar svg {
    width: 20px;
    height: 20px;
    color: white;
}

.chat-widget__header-text {
    flex: 1;
    min-width: 0;
}

.chat-widget__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.chat-widget__subtitle {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
}

.chat-widget__close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-widget__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.chat-widget__close svg {
    width: 16px;
    height: 16px;
}

/* Chat Body */
.chat-widget__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-widget__body::-webkit-scrollbar {
    width: 6px;
}

.chat-widget__body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-widget__body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.chat-widget__body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Chat Messages */
.chat-widget__message {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget__message--bot {
    align-self: flex-start;
}

.chat-widget__message--user {
    align-self: flex-end;
}

.chat-widget__message-content {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-widget__message--bot .chat-widget__message-content {
    background: #e2e8f0;
    color: #1e293b;
    border-bottom-left-radius: 4px;
}

.chat-widget__message--user .chat-widget__message-content {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-widget__message-time {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    padding: 0 4px;
}

.chat-widget__message--user .chat-widget__message-time {
    text-align: right;
}

/* Chat Input Area */
.chat-widget__input-area {
    padding: 16px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-widget__input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.chat-widget__input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chat-widget__input::placeholder {
    color: #94a3b8;
}

.chat-widget__send {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-widget__send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.chat-widget__send:active {
    transform: scale(0.95);
}

.chat-widget__send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-widget__send svg {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-widget__box {
        width: calc(100vw - 32px);
        max-width: 320px;
        height: calc(100vh - 100px);
        max-height: 500px;
        bottom: 72px;
        right: 0;
    }

    .chat-widget__icon {
        width: 52px;
        height: 52px;
    }

    .chat-widget__icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Prevent body scroll when chat is open on mobile */
body.chat-open {
    overflow: hidden;
}

