:root {
            --primary-red: #d90000;
            --primary-orange: #FF6B00;
            --secondary: #333333;
            --light: #f8f9fa;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
        }

        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
        }

        .text-gradient {
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-image {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/large-format-printing-irvine.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 80vh;
            min-height: 500px;
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: white;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 6px rgba(217, 0, 0, 0.2);
        }

        .btn-primary:hover {
            background-color: #b00000;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(217, 0, 0, 0.3);
        }

        .btn-secondary {
            background-color: var(--primary-orange);
            color: white;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
        }

        .btn-secondary:hover {
            background-color: #E05800;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 107, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-outline:hover {
            background-color: var(--primary-red);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(217, 0, 0, 0.2);
        }

        .card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #eee;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            border-color: #ddd;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 100px;
            height: 4px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
            border-radius: 2px;
        }

        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            transform: translateY(-100%);
            opacity: 0;
        }

        .sticky-header.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-width: 300px;
            background-color: white;
            z-index: 2000;
            padding: 2rem;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .feature-card {
            padding: 2rem;
            border-radius: 8px;
            background-color: white;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            border-color: #ddd;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .testimonial {
            position: relative;
            padding: 2rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .testimonial:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: #f2f2f2;
            font-family: Georgia, serif;
            z-index: 0;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .faq-item {
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.25rem;
            background-color: #f9f9f9;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.25rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 1.25rem;
            max-height: 500px;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            color: white;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: white;
            border-radius: 8px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 2rem;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .popup-header {
            position: sticky;
            top: 0;
            background-color: white;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #eee;
            z-index: 10;
        }

        .popup-footer {
            position: sticky;
            bottom: 0;
            background-color: white;
            padding-top: 1rem;
            margin-top: 1rem;
            border-top: 1px solid #eee;
            z-index: 10;
        }

        .close-popup {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-popup:hover {
            color: var(--primary-red);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            display: block;
            width: 100%;
            padding: 0.75rem;
            font-size: 1rem;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: 0.25rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .required:after {
            content: ' *';
            color: var(--primary-red);
        }

        .counter-wrapper {
            text-align: center;
            padding: 2rem 1rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            line-height: 1.2;
        }

        .counter-title {
            font-size: 1.25rem;
            color: #666;
            margin-top: 0.5rem;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f8f9fa;
            color: #666;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
        }

        .footer-link {
            color: #666;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-link:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }

        .contact-info-item {
            display: flex;
            margin-bottom: 1rem;
            align-items: flex-start;
        }

        .contact-icon {
            color: var(--primary-orange);
            font-size: 1.25rem;
            margin-right: 1rem;
            margin-top: 0.25rem;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .privacy-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .privacy-content.active {
            max-height: 1000px;
        }

        .terms-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .terms-content.active {
            max-height: 1000px;
        }

        @media (max-width: 768px) {
            .hero-image {
                height: 60vh;
            }

            .section-title:after {
                width: 80px;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .counter {
                font-size: 2rem;
            }

            .counter-title {
                font-size: 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        @media print {
            .no-print {
                display: none !important;
            }

            .page-break {
                page-break-before: always;
            }
        }

/* Subpage utilities */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #d90000, #FF6B00);
    color: white;
    text-align: center;
}
.page-header h1 { color: white; font-size: 2.25rem; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.92); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }
.breadcrumbs { background: #f8f9fa; padding: 0.75rem 0; border-bottom: 1px solid #eee; }
.breadcrumb-list { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; font-size: 0.875rem; }
.breadcrumb-list li { color: #666; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; margin: 0 0.5rem; color: #aaa; }
.breadcrumb-list a { color: #d90000; text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 230px; background: white; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); padding: 0.5rem 0; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.5rem 1rem; color: #333; text-decoration: none; font-size: 0.9rem; }
.nav-dropdown-menu a:hover { background: #f9f9f9; color: #d90000; padding-left: 1.25rem; }
.nav-link-active { color: #d90000 !important; font-weight: 600; }
.service-page-content h2 { font-size: 1.75rem; margin-top: 2rem; margin-bottom: 1rem; }
.service-feature-list { list-style: none; padding: 0; margin: 1rem 0; }
.service-feature-list li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: #555; }
.service-feature-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: #FF6B00; }
.quote-sidebar { background: linear-gradient(135deg, #d90000, #FF6B00); color: white; padding: 2rem; border-radius: 8px; position: sticky; top: 6rem; }
.quote-sidebar h3 { color: white; margin-bottom: 1rem; }
.related-services a { display: block; padding: 1rem; background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); margin-bottom: 0.75rem; color: #333; text-decoration: none; transition: all 0.3s ease; }
.related-services a:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); color: #d90000; }
