.page-banner {
    position: relative;
    width: 100%;
    height: 580px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.banner-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
.printing-processes {
    padding: 60px 0;
    background: #fff;
}
.embroidery-section {
    background: #F9F5F3;
}
    .printing-inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 10px;
    }
.printing-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}
.printing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}
.printing-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.printing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.printing-card:active {
    transform: scale(0.97);
}
.printing-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.printing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.printing-card .printing-title-row {
    display: flex;
    align-items: center;
    padding: 20px 20px 12px;
}

.printing-card .printing-title-row .printing-num {
    margin-right: 12px;
}
.printing-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}
.printing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}
.printing-desc {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.process-page {
    padding: 60px 0;
    background: #fff;
}
    .process-page-inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 10px;
    }
.process-step {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
}
.process-step-reverse {
    grid-template-columns: 1.5fr 1fr;
}
.process-step-reverse .process-step-images {
    order: -1;
}
.step-num {
    font-size: 114px;
    font-weight: 700;
    color: #e2b483;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 1;
    display: block;
}
.step-divider {
    display: block;
    width: 40px;
    height: 3px;
    background: #e2b483;
    margin: 10px 0 20px;
}
.process-step-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}
.process-step-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}
.step-slider {
    position: relative;
    width: 100%;
    height: 370px;
    border-radius: 8px;
    overflow: hidden;
}
.step-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.step-slider img.active {
    opacity: 1;
}
.contact-page {
    padding: 80px 0;
    background: #fff;
}
    .contact-new-layout {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
.contact-new-left {
    padding-top: 20px;
}
.contact-new-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}
.contact-new-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
.contact-new-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin-bottom: 30px;
}
.contact-new-info {
    display: flex;
    flex-direction: column;
}
.contact-new-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-new-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #333;
    margin-top: 2px;
    margin-right: 16px;
}
.contact-info-label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.contact-info-value a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-value a:hover {
    color: #e2b483;
}
.contact-new-right {
    background: #f3f3f3;
    padding: 50px 40px;
    border-radius: 12px;
}
.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}
.contact-form-new .form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form-new .form-group-new {
    margin-bottom: 0;
}
.contact-form-new .form-group-new label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
.contact-form-new .form-group-new input,
.contact-form-new .form-group-new select,
.contact-form-new .form-group-new textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form-new .form-group-new input:focus,
.contact-form-new .form-group-new select:focus,
.contact-form-new .form-group-new textarea:focus {
    border-bottom-color: #e2b483;
}
.contact-form-new .form-group-new textarea {
    resize: vertical;
}
.contact-form-new .btn-submit-new {
    display: block;
    width: 100%;
    padding: 16px;
    background: #EEB179;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    text-align: center;
}
.contact-form-new .btn-submit-new:hover {
    background: #d9a066;
}
@media (max-width: 1200px) {
    .printing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .printing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step,
    .process-step-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-step-reverse .process-step-images {
        order: 0;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .page-banner {
        height: 400px;
    }
    .banner-title {
        font-size: 36px;
    }
    .step-num {
        font-size: 72px;
    }
    .process-step-text h2 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .printing-inner,
    .process-page-inner,
    .contact-new-layout {
        padding: 0 10px;
    }
    .form-row,
    .contact-form-new .form-row-new {
        grid-template-columns: 1fr;
    }
    .printing-grid {
        grid-template-columns: 1fr;
    }
    .form-row,
    .contact-form-new .form-row-new {
        grid-template-columns: 1fr;
    }
    .printing-grid {
        grid-template-columns: 1fr;
    }
    .process-page-inner,
    .contact-new-layout,
    .printing-inner {
        padding: 0 10px;
    }
    .form-row,
    .contact-form-new .form-row-new {
        grid-template-columns: 1fr;
    }
    .printing-grid {
        grid-template-columns: 1fr;
    }
    .form-row,
    .contact-form-new .form-row-new {
        grid-template-columns: 1fr;
    }
    .step-slider {
        height: 250px;
    }
    .contact-new-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-new-title {
        font-size: 32px;
    }
    .contact-new-subtitle {
        font-size: 15px;
    }
    .contact-new-right {
        padding: 30px 20px;
    }
    .contact-form-title {
        font-size: 24px;
    }
    .contact-info-value {
        font-size: 18px;
    }
    .process-step {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    .step-num {
        font-size: 60px;
    }
    .process-step-text h2 {
        font-size: 24px;
    }
    .process-step-text p {
        font-size: 15px;
    }
    .printing-heading {
        font-size: 32px;
    }
    .page-banner {
        height: 300px;
    }
    .banner-title {
        font-size: 28px;
        padding: 0 10px;
    }
}
