/* Skip Navigation - ADA compliance */
.skip-nav {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 10px 20px;
    background-color: #1465c0;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.skip-nav:focus {
    left: 0;
}

/* Global resets */
body {
    margin: 0;
    padding: 0;
    background-color: #b9d6fe;
}

.page-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    min-height: calc(100vh - 160px);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #b9d6fe;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    max-width: 1200px;
    width: 100%;
    height: 120px;
    background-color: #003366;
    margin: 0 auto;
    position: relative;
    z-index: 200;
}

.header-image {
    width: 1200px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    position: relative;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.header-logo {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 210;
    display: block;
    pointer-events: auto;
}

.header-logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.header-logo:hover img {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .header-logo img {
        height: 37px;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 28px;
    }
}

/* Navbar Styles */
.navbar {
    max-width: 1200px;
    width: 100%;
    height: 40px;
    background-color: #1465c0;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

nav {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-start;
    padding-left: 20px;
    overflow: hidden;
}

.get-in-touch-btn {
    height: 25px;
    padding: 0 10px;
    background-color: #ff8c00;
    color: #000000;
    text-decoration: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.get-in-touch-btn:hover {
    background-color: #cc7000;
}

.get-in-touch-btn::after {
    content: ' \25B6';
    font-size: 9px;
    margin-left: 5px;
}

nav ul li {
    position: relative;
}

nav .home-item {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14.4px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    padding-top: 5px;
    white-space: nowrap;
    margin-right: 30px;
}

nav .home-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background-color: #ff8800;
}

nav .home-item:hover {
    color: #87CEEB;
    transform: translateY(-2px);
}

nav ul li.home-item {
    margin-right: 30px;
}

nav ul li.home-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background-color: #ff8800;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14.4px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    padding-top: 5px;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #87CEEB;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #87CEEB;
    transform: translateY(-2px);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Footer Styles */
footer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0;
    background-color: #003366;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

footer .contact,
footer .links {
    list-style: none;
}

footer .contact {
    text-align: right;
}

footer .contact li {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

footer .contact li:first-child {
    font-size: 22px;
}

footer .contact li.footer-logo {
    margin-bottom: 15px;
}

footer .contact li.footer-logo img {
    width: 250px;
    height: 40px;
    max-width: 100%;
    height: auto;
}

.footer-contact-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #87CEEB;
    color: #003366;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.footer-contact-btn:hover {
    background-color: #6bb6d9;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
    align-items: flex-end;
}

.social-icons img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    cursor: pointer;
}

footer .links li {
    color: white;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

footer .links li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .links li a:hover {
    color: #87CEEB;
    text-decoration: none;
}

/* Mobile Responsive - Navbar */
@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
    }

    nav {
        position: relative; /* So HOME and hamburger are positioned relative to nav */
        padding-left: 50px; /* Make room for hamburger icon */
        justify-content: flex-end; /* Push "Get in touch" to the right */
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        left: -300px;
        top: 40px;
        flex-direction: column;
        background-color: #1465c0;
        width: fit-content;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 7px 0;
        gap: 0;
        z-index: 1000;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        display: block;
        padding: 5.6px 20px 5.6px 20px;
        white-space: nowrap;
    }

    nav ul li a::after {
        content: '';
        font-size: 14.4px;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transition: none;
    }

    nav ul li a:hover {
        transform: none;
    }

    nav ul li a:hover::after {
        width: 0;
    }

    nav .home-item {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 55px;
        margin: 0;
        z-index: 999;
        color: #ffffff;
        text-decoration: none;
        font-size: 14.4px;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    nav .home-item::after {
        display: none; /* Hide orange divider in mobile */
    }
    
    nav .home-item:hover {
        color: #87CEEB;
        transform: translateY(-50%); /* Keep centered, don't move up */
    }

    nav ul li.home-item {
        display: none; /* Hide the old home-item if it exists in ul */
    }

    nav ul {
        font-size: 9.6px;
    }

    .get-in-touch-btn {
        font-size: 12px;
        height: 22px;
        padding: 0 8px;
        margin-right: 10px; /* Add space from right edge */
    }

    header {
        height: auto;
        min-height: 120px;
    }

    footer {
        flex-direction: column;
        gap: 20px;
    }

    footer .contact {
        text-align: left;
    }

    .social-icons {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    nav ul {
        font-size: 9.6px;
    }
}

/* About content and headings — single source of truth for Turbo compatibility */
.about-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0;
    padding: 20px 40px 20px 40px;
    background-color: white;
}

.about-content h1 {
    color: #9c2515;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
}

/* Pricing table styles — single source of truth for Turbo compatibility */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pricing-table td,
.pricing-table th {
    padding: 2px 2px;
    text-align: center;
    font-size: 17px;
    line-height: 0.9;
}

.pricing-table th {
    font-weight: bold;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
    text-align: left;
}

.pricing-table-multi td,
.pricing-table-multi th {
    padding: 2px 2px;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
    border-left: 2px solid #1465c0;
}

/* Page-specific overrides */
.about-content-deep {
    padding-bottom: 40px !important;
}

.about-content-deep-min {
    padding-bottom: 40px !important;
    min-height: calc(100vh - 400px);
}

.about-content h1.h1-small {
    font-size: 29px;
}

.about-content h1.h1-spaced {
    margin-bottom: 30px;
}

/* Dropdown nav — consolidated from inline styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1465c0;
    min-width: 150px;
    display: none;
    padding: 10px 0;
    margin-top: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 10px 20px 10px 30px;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
    color: #ffffff;
}

.dropdown li a::before {
    content: '▶';
    position: absolute;
    left: 15px;
    color: #ffffff;
    font-size: 10px;
    transition: color 0.3s ease;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a:hover {
    background-color: transparent;
    color: #87CEEB;
    transform: none;
}

.dropdown li a:hover::before {
    color: #87CEEB;
}

nav ul li:hover .dropdown {
    display: block;
}

/* Hero section — consolidated from inline styles */
.digipak-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.digipak-image {
    flex: 1;
}

.digipak-image img {
    width: 500px;
    height: 290px;
    object-fit: cover;
}

.digipak-promo {
    flex: 0 0 402px;
    width: 402px;
    max-width: 100%;
    background-color: #fff;
    padding: 20px;
    text-align: right;
    position: relative;
}

.digipak-promo .promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 157px;
    z-index: 0;
    object-fit: contain;
}

.digipak-promo > * {
    position: relative;
    z-index: 1;
}

.about-content .digipak-promo h2 {
    color: #000;
    font-size: 26px;
    margin-bottom: 10px;
    margin-right: 0;
    text-align: right;
}

.digipak-promo .price {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    margin-right: 0;
    text-align: right;
}

.digipak-promo .testimonial {
    font-size: 13px;
    font-style: italic;
    line-height: 1.4;
    text-align: right;
    margin-bottom: 10px;
}

.digipak-promo .author {
    font-size: 13px;
    font-weight: bold;
    text-align: right;
}

/* Product sections — consolidated from inline styles */
.product-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 100%;
    height: 3px;
    background-color: #1465c0;
    z-index: 0;
}

.section-title {
    background-color: #1465c0;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.product-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.product-content img {
    flex: 0 0 375px;
    width: 375px;
    height: 211px;
    object-fit: cover;
}

.product-details {
    flex: 1;
    margin-left: 120px;
}

.product-details p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 10px;
}

.product-details a {
    color: #1465c0;
    text-decoration: none;
}

.product-details a:hover {
    text-decoration: underline;
}

/* Contact and pricing buttons — consolidated from inline styles */
.contact-button {
    display: inline-block;
    padding: 11px;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none !important;
    color: #003366;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    padding-right: 36px;
}

.contact-button::after {
    content: '▶';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1465c0;
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background-color: #1465c0;
    color: #ffffff;
    border-color: #1465c0;
    transform: translateX(5px);
    text-decoration: none !important;
}

.contact-button:hover::after {
    color: #ffffff;
    transform: translateY(-50%) translateX(5px);
}

.pricing-button {
    display: inline-block;
    padding: 11px;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none !important;
    color: #003366;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    padding-right: 36px;
}

.pricing-button::after {
    content: '▶';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1465c0;
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pricing-button:hover {
    background-color: #1465c0;
    color: #ffffff;
    border-color: #1465c0;
    transform: translateX(5px);
    text-decoration: none !important;
}

.pricing-button:hover::after {
    color: #ffffff;
    transform: translateY(-50%) translateX(5px);
}

.pricing-button + p {
    margin-top: 10px;
}

/* About content text — consolidated from inline styles */
.about-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Responsive — consolidated from inline styles */
@media (max-width: 968px) {
    .digipak-hero {
        flex-direction: column;
    }

    .digipak-image img {
        width: 100%;
        height: auto;
    }

    .digipak-promo {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .digipak-promo .promo-bg {
        width: 100%;
        height: auto;
    }

    .product-content {
        flex-direction: column;
    }

    .product-content img {
        width: 100%;
        height: auto;
        flex: 1;
    }

    .product-details {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .digipak-promo {
        padding: 15px;
    }

    .about-content .digipak-promo h2 {
        font-size: 20px;
    }

    .digipak-promo .price {
        font-size: 36px;
    }

    .digipak-promo .testimonial {
        font-size: 12px;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
}

.faq-section h2 {
    color: #9c2515;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: left;
}

.faq-section-centered {
    padding: 40px 20px;
}

.faq-section-centered h2 {
    color: #003366;
    text-align: center;
}

.faq-section-vinyl {
    padding: 20px 0 40px 0;
}

.faq-section-vinyl h2 {
    color: #003366;
    text-align: center;
}

.faq-item {
    background-color: #f5f5f5;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #f5f5f5;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e8e8e8;
}

.faq-question::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background-color: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: #333;
    line-height: 1.6;
}

/* ===== Category Product Grids (CD_Products, DVD_products, Design_templates) ===== */
.about-content .subtitle {
    color: #777;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

.about-content h2 {
    color: #9c2515;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.products-grid-flush {
    margin-bottom: 0;
}

.product-box {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.product-box img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-box h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 20px;
}

.product-btn,
.product-btn:visited,
.product-btn:link {
    display: block;
    padding: 10px 15px;
    background-color: #ff8c00;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 8px;
    white-space: nowrap;
}

.product-btn:hover {
    background-color: #cc7000;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ===== Template Pages ===== */
.about-content h1 .subtitle {
    font-size: 25.2px;
}

.intro-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-text a,
.about-content .intro-text a {
    color: #1465c0;
    text-decoration: underline;
}

.intro-text a:hover,
.about-content .intro-text a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

.intro-text-large {
    font-size: 20.8px;
    font-weight: bold;
}

.templates-wrapper {
    position: relative;
}

.templates-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #d0d0d0;
    z-index: 1;
}

.templates-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #d0d0d0;
    z-index: 1;
}

.middle-line {
    display: none;
}

.template-section {
    margin-bottom: 0;
    position: relative;
}

.section-header {
    background-color: #4a4a4a;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.template-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    position: relative;
}

.template-row:nth-child(even) {
    background-color: #ffffff;
}

.template-name {
    font-size: 14px;
    color: #1465c0;
    flex: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.template-name:hover {
    opacity: 0.7;
}

.template-name img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#bluray-templates {
    scroll-margin-top: 50px;
}

@media (max-width: 768px) {
    .template-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===== Resource Links (Forms, more) ===== */
.resources-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}

.resource-link {
    display: block;
    padding: 20px 25px;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #003366;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.resource-link::after {
    content: '▶';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #1465c0;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    background-color: #1465c0;
    color: white;
    border-color: #1465c0;
    transform: translateX(5px);
}

.resource-link:hover::after {
    color: white;
    transform: translateY(-50%) translateX(5px);
}

.resource-sub {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-top: 4px;
}

.resource-link:hover .resource-sub {
    color: white;
}

.resource-link.external::before {
    content: '🔗';
    margin-right: 10px;
}

.resources-links-spaced {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .resources-links {
        max-width: 100%;
    }

    .resource-link {
        font-size: 16px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .resource-link {
        font-size: 15px;
    }
}

/* ===== About Content Links (Design, Mastering, Forms) ===== */
.about-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

.about-content a.email-link {
    color: #87CEEB;
    text-decoration: none;
}

.about-content a.email-link:hover {
    color: #87CEEB;
    text-decoration: underline;
}

/* ===== About Content H2 Variants ===== */
.about-content h2.h2-black {
    color: #000000;
    font-size: 36px;
    margin-bottom: 15px;
}

.about-content h2.discography-heading {
    color: #b0b0b0;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ===== Contact Form (Contact_Us) ===== */
.contact-info {
    font-size: 21.6px;
    line-height: 1.8;
    color: #333;
    font-weight: bold;
}

.contact-info p {
    margin: 0 0 15px 0;
}

.contact-info a {
    color: #1465c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

.contact-form {
    margin-top: 50px;
    max-width: 600px;
}

.contact-form h2 {
    color: #9c2515;
    font-size: 28px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #1465c0;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    min-height: 150px;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.form-group textarea:focus {
    outline: none;
    border-color: #1465c0;
}

.word-count {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.word-count.over-limit {
    color: #cc0000;
    font-weight: bold;
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1465c0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: Arial, sans-serif;
}

.submit-btn:hover {
    background-color: #0d4a8a;
}

.submit-btn.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .contact-info {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        font-size: 15px;
    }
}

/* ===== Resources Page ===== */

/* ===== Order Inquiry Form ===== */
.order-form {
    max-width: 700px;
}

.order-form h2 {
    color: #1465c0;
    font-size: 20px;
    margin: 30px 0 15px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #e0e0e0;
}

.form-group label .required {
    color: #9c2515;
    margin-left: 3px;
}

.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #1465c0;
}

.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231465c0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select:focus {
    outline: none;
    border-color: #1465c0;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-hint {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 25px;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.form-message.error {
    background-color: #fdecea;
    border: 2px solid #e53935;
    color: #b71c1c;
}

#packaging-group {
    display: none;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .order-form .about-content h1 {
        font-size: 28px;
    }
}

/* ===== Resources Page (content) ===== */
.resources-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 60px 40px;
    background-color: white;
}

.resources-content h1 {
    color: #9c2515;
    font-size: 36px;
    margin-bottom: 10px;
}

.resources-intro {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.resource-article {
    border-top: 3px solid #1465c0;
    margin-bottom: 60px;
    padding-top: 30px;
}

.resource-article h2 {
    color: #1465c0;
    font-size: 26px;
    margin-bottom: 12px;
}

.resource-article h3 {
    color: #003366;
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 8px;
}

.resource-article p {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.resource-article ul {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-left: 24px;
}

.resource-article ul li {
    margin-bottom: 6px;
}

.resource-article .article-tag {
    display: inline-block;
    background-color: #e8f0fb;
    color: #1465c0;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 14px;
}

.resource-cta {
    display: inline-block;
    margin-top: 16px;
    background-color: #1465c0;
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.resource-cta:hover {
    background-color: #003366;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 24px 0;
    font-size: 14px;
}

.comparison-table th {
    background-color: #1465c0;
    color: white;
    padding: 12px 16px;
    text-align: left;
}

.comparison-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
    background-color: #f5f8ff;
}

@media (max-width: 768px) {
    .resources-content {
        padding: 20px 20px 40px 20px;
    }

    .comparison-table {
        font-size: 13px;
    }
}

/* ===== Design Page ===== */
.design-image {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.design-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-content h2.h2-black {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-content h2.h2-black {
        font-size: 24px;
    }
}

/* ===== Mastering Page ===== */
.mastering-image {
    width: 1200px;
    height: 358px;
    max-width: 100%;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.discography-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed;
}

.discography-table thead {
    background-color: #5a5a5a;
    color: white;
}

.discography-table th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #ddd;
    width: 25%;
}

.discography-table td {
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    width: 25%;
}

.discography-table td:nth-child(1),
.discography-table td:nth-child(3) {
    background-color: #e8e8e8;
}

.discography-table tbody tr:nth-child(even) td {
    background-color: #ffffff;
}

.discography-table tbody tr:nth-child(even) td:nth-child(1),
.discography-table tbody tr:nth-child(even) td:nth-child(3) {
    background-color: #ececec;
}

/* ===== Vinyl Swatch Section ===== */
.swatch-section {
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.swatch-title {
    font-size: 22px;
    color: #9c2515;
    margin-bottom: 15px;
}

.swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 120px);
    gap: 15px;
    justify-content: center;
}

.swatch-grid img {
    flex: 0 0 120px;
}

/* ===== Index Slideshow ===== */
html {
    background-color: #b9d6fe;
}

.slideshow {
    max-width: 1200px;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow img.active {
    opacity: 1;
}

.slideshow h1 {
    position: absolute;
    color: white;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    z-index: 20;
    padding: 0 20px;
    margin: 0;
}

.slideshow h1 .main-text {
    font-size: clamp(34px, 6vw, 52px);
    display: block;
}

.slideshow h1 .sub-text {
    font-size: clamp(28px, 5.5vw, 46px);
    display: block;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.tagline {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 10px 20px;
    text-align: center;
    background-color: white;
}

.tagline h2 {
    color: #003366;
    font-size: 28px;
    font-weight: 700;
}

/* ===== Index Testimonials ===== */
.testimonial-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
}

.testimonial-section h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-box {
    background-color: #f5f5f5;
    border-radius: 8px;
    height: 190px;
    display: flex;
    padding: 10px;
}

.testimonial-image {
    width: 200px;
    height: 170px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.testimonial-text {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text p {
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 14px;
}

.testimonial-text .author {
    font-weight: bold;
    color: #003366;
    font-style: normal;
    font-size: 14px;
}

.more-testimonials-btn {
    display: inline-block;
    margin: 20px auto 0;
    padding: 12px 24px;
    background-color: #1465c0;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
}

.more-testimonials-btn:hover {
    background-color: #003366;
}

.more-testimonials-btn::after {
    content: ' \25B6';
    font-size: 9px;
    margin-left: 5px;
}

.testimonial-section > .more-testimonials-btn {
    display: block;
    width: fit-content;
}

@media (max-width: 768px) {
    .testimonial-container {
        grid-template-columns: 1fr;
    }
}

/* ===== Blu-Ray Reduced Pricing Tables ===== */
.pricing-table-reduced-30 td,
.pricing-table-reduced-30 th {
    line-height: 1.372;
}

.pricing-table-reduced-50 td,
.pricing-table-reduced-50 th {
    line-height: 1.0;
    width: 14%;
}

.pricing-table-reduced-50 td:first-child,
.pricing-table-reduced-50 th:first-child {
    width: 14%;
}

.pricing-table-reduced-50 td:last-child,
.pricing-table-reduced-50 th:last-child {
    white-space: nowrap;
    width: 30%;
}

.pricing-table-reduced-50 .spacing-reduced-row td,
.pricing-table-reduced-50 .spacing-reduced-row th {
    line-height: 1.0;
}

/* ===== Insert / Booklet Tables ===== */
.insert-table td,
.insert-table th {
    line-height: 1.1;
}

.insert-table tr:first-child td:last-child,
.insert-table tr:first-child th:last-child {
    line-height: 0.98;
}

.booklet-table td,
.booklet-table th {
    line-height: 1.1;
}

.booklet-table tr:first-child td:last-child,
.booklet-table tr:first-child th:last-child {
    line-height: 0.98;
}

.reduced-spacing p {
    line-height: 0.8;
}

/* ===== Index Products Section ===== */
.products {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px 20px 20px;
    background-color: white;
}

.product-explore-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff8c00;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.product-explore-btn:hover {
    background-color: #cc7000;
}

.product-explore-btn::after {
    content: ' \25B6';
    font-size: 9px;
    margin-left: 5px;
}

.product-box ul {
    list-style: none;
    text-align: left;
    padding-left: 20px;
}

.product-box ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.product-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #003366;
    font-weight: bold;
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
    }
}

/* ===== Mobile Responsive Fixes ===== */

/* Fix 1: Pricing tables — reduce font-size so columns fit on phones */
@media (max-width: 768px) {
    .pricing-table td,
    .pricing-table th {
        font-size: 14px;
        padding: 2px 1px;
    }
}

@media (max-width: 480px) {
    .pricing-table td,
    .pricing-table th {
        font-size: 12px;
        padding: 1px 1px;
    }

    .pricing-table td:last-child,
    .pricing-table th:last-child {
        border-left-width: 1px;
    }
}

/* Fix 2: about-content padding — give content more room on mobile */
@media (max-width: 768px) {
    .about-content {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 15px 15px;
    }

    .about-content h1 {
        font-size: 28px;
    }
}

/* Fix 3: FAQ section padding — match about-content on mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 25px;
    }
}

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

    .faq-section h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 14px;
        padding: 12px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* Fix 4: Contact form — full-width button and tighter spacing on mobile */
@media (max-width: 480px) {
    .contact-form {
        margin-top: 30px;
    }

    .contact-form h2 {
        font-size: 22px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* prevents iOS zoom on focus */
    }
}

/* Fix 5: Vinyl swatch images — responsive override for inline dimensions */
@media (max-width: 768px) {
    .swatch-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .swatch-grid img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 2 / 3;
        flex: none;
    }
}

/* Fix 6: Testimonial sections — short text and stacked layout on tablets/mobile */
.short-text {
    display: none;
}

@media (max-width: 1050px) {
    .full-text {
        display: none;
    }

    .short-text {
        display: inline;
    }

    .testimonial-box {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .testimonial-image {
        width: 100%;
        height: 180px;
    }

    .testimonial-text {
        padding: 12px 8px;
    }

    .testimonial-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .testimonial-text .author {
        font-size: 13px;
    }

    .testimonial-section {
        padding: 30px 15px;
    }

    .testimonial-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* ===== Testimonials Page Cards ===== */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-card {
    padding: 22px 28px;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.testimonial-card .quote {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

.testimonial-card .attribution {
    font-size: 14px;
    color: #555;
    margin: 10px 0 0 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 18px 20px;
    }

    .testimonial-card .quote {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 15px 16px;
    }

    .testimonial-card .quote {
        font-size: 14px;
    }

    .testimonial-card .attribution {
        font-size: 13px;
    }
}
