.section-subtitle { text-align: center; max-width: 900px; margin: 0 auto 3.5rem; font-size: 1.1rem; color: var(--text-muted); }

.page-hero {
    background: linear-gradient(135deg, rgba(15, 35, 40, 0.95) 0%, rgba(0, 90, 90, 0.85) 100%), url('../img/banners/male-designer-leather-tailor-working-factory-scaled.jpg');
    background-size: cover;
    background-position: center 75%;
    padding: 180px 0 8rem;
    text-align: center;
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
.page-hero .subtitle { max-width: 900px; margin: 0 auto; font-weight: 300; color: rgba(255, 255, 255, 0.9); }

.category-grid { display: flex; flex-direction: column; gap: 4rem; }

.category-card { display: flex; flex-direction: row; background-color: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); transition: all 0.4s var(--ease-sq); position: relative; box-shadow: 0 12px 35px -5px rgba(0, 0, 0, 0.15); }
.category-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); transform: scaleX(0); transition: transform 0.4s var(--ease-sq); transform-origin: left; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.category-card:hover::before { transform: scaleX(1); }
.category-card:nth-child(even) { flex-direction: row-reverse; }

.category-image-wrapper { flex: 0 0 45%; position: relative; min-height: 400px; overflow: hidden; }
.category-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform 0.6s var(--ease-sq); pointer-events: none; }
.category-card:hover .category-image { transform: scale(1.05); }

.category-content { flex: 1; padding: 4rem 5%; display: flex; flex-direction: column; justify-content: center; }
.category-content h3 { margin-bottom: 1.2rem; }
.category-content p { line-height: 1.8; margin-bottom: 1.2rem; color: var(--text-muted); }

.quality-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 2rem; }

.quality-card { padding: 2.5rem 2rem; border-radius: 16px; text-align: center; transition: all 0.4s var(--ease-sq); position: relative; overflow: hidden; background: var(--border-color); z-index: 1; }
.quality-card::after { content: ''; position: absolute; inset: 3px; background: #fff; border-radius: 13px; z-index: -1; transition: all 0.3s ease; }
.quality-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent 60%, var(--secondary-color) 80%, var(--accent-color) 100%); animation: rotateSnake 4s linear infinite; z-index: -2; }
.quality-card:nth-child(1)::before { animation-delay: 0s; }
.quality-card:nth-child(2)::before { animation-delay: -1.33s; }
.quality-card:nth-child(3)::before { animation-delay: -2.66s; }
.quality-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.quality-card:hover::before { animation-duration: 2s; }
.quality-card-icon, .quality-card h4, .quality-card p { position: relative; z-index: 2; }
.quality-card-icon { width: 60px; height: 60px; margin: 0 auto 1.25rem; background: rgba(63, 224, 219, 0.15); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.quality-card:hover .quality-card-icon { background: var(--primary-color); color: white; transform: scale(1.1); }
.quality-card h4 { font-family: 'Inter', sans-serif; color: var(--text-on-light); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.75rem; }
.quality-card p { font-size: 1rem; margin-bottom: 0; color: var(--text-muted); }

.cta-section { background: linear-gradient(135deg, #112d32 0%, var(--primary-color) 100%); padding: 5rem 0; color: white; text-align: center; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(63, 224, 219, 0.1) 0%, transparent 60%); pointer-events: none; }
.cta-section .container { position: relative; z-index: 2; }
.cta-title { color: white; margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3rem); }
.cta-text { color: rgba(255, 255, 255, 0.85); max-width: 900px; margin: 0 auto 2.5rem; }

.btn-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: white; color: var(--primary-color); padding: 1.1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); border: 2px solid white; }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); background: var(--bg-off-white); }
