/* Quality Assurance Service Page - Unique Styles */

/* ================================
   HERO SECTION - Shield/Verification Theme
================================ */
.qa-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(155deg, #1a1a2e 0%, #16213e 40%, #1a2744 100%);
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.qa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Shield Pattern Background */
.shield-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shield-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.8;
}

.qa-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.qa-hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qa-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.qa-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.qa-hero .breadcrumb a:hover {
    color: var(--primary-gold);
}

.qa-hero .breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.qa-hero .breadcrumb span {
    color: var(--primary-gold);
}

.qa-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.qa-hero h1 span {
    color: var(--primary-gold);
}

.qa-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.qa-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual - Verification Badge */
.qa-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.verification-badge {
    position: relative;
    width: 320px;
    height: 320px;
}

.badge-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.badge-shield > svg {
    width: 140px;
    height: 160px;
    color: var(--primary-gold);
    fill: rgba(212, 175, 55, 0.1);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

.badge-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkPulse 2s ease-in-out infinite;
}

.badge-check svg {
    width: 40px;
    height: 40px;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes checkPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.badge-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation-delay: 1s;
}

@keyframes ringExpand {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Certification Tags */
.cert-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    animation: tagFloat 4s ease-in-out infinite;
}

.cert-tag span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.tag-1 { top: 10%; left: 10%; animation-delay: 0s; }
.tag-2 { top: 20%; right: 5%; animation-delay: 1s; }
.tag-3 { bottom: 15%; left: 5%; animation-delay: 2s; }

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Wave */
.qa-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.qa-hero-wave svg {
    width: 100%;
    height: 120px;
    fill: var(--bg-white);
}

/* ================================
   SECTION HEADER
================================ */
.qa-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.qa-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.qa-section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.qa-section-header.light h2 {
    color: white;
}

.qa-section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   SERVICES SECTION - Checklist Style
================================ */
.qa-services {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.qa-services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qa-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(26, 35, 50, 0.08);
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
    transition: all 0.4s ease;
}

.qa-service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.qa-check-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.qa-check-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.qa-service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.qa-service-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ================================
   STANDARDS SECTION
================================ */
.qa-standards {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.qa-standards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.qa-standard-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(26, 35, 50, 0.08);
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
    transition: all 0.4s ease;
}

.qa-standard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.12);
    border-color: var(--primary-gold);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.qa-standard-card:hover .standard-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.standard-icon span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
}

.qa-standard-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.qa-standard-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ================================
   PROCESS SECTION - Horizontal Flow
================================ */
.qa-process {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.qa-process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.qa-process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.process-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.qa-step-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.qa-step-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.qa-process-connector {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
}

.qa-process-connector svg {
    width: 30px;
    height: 30px;
    color: var(--primary-gold);
    opacity: 0.5;
}

/* ================================
   BENEFITS SECTION
================================ */
.qa-benefits {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.qa-benefits-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.qa-benefits-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.qa-benefits-content > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.qa-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qa-benefit {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-gold);
}

.benefit-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.benefit-text p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stats Cards */
.qa-benefits-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qa-stat-card {
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e6 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* ================================
   CTA SECTION
================================ */
.qa-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.qa-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.qa-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.qa-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.qa-cta-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.qa-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qa-cta-buttons .cta-button {
    min-width: 200px;
}

.qa-cta-buttons .cta-button.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.qa-cta-buttons .cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .qa-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .qa-hero-visual {
        order: -1;
    }
    
    .verification-badge {
        width: 280px;
        height: 280px;
    }
    
    .qa-standards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .qa-benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .qa-benefits-stats {
        flex-direction: row;
    }
    
    .qa-stat-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .qa-hero {
        padding-top: 70px;
    }
    
    .qa-hero .container {
        padding: 2rem 1rem 6rem;
    }
    
    .qa-hero-content {
        text-align: center;
    }
    
    .qa-hero .breadcrumb {
        justify-content: center;
    }
    
    .qa-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .qa-hero-cta {
        justify-content: center;
    }
    
    .verification-badge {
        width: 240px;
        height: 240px;
    }
    
    .badge-shield > svg {
        width: 100px;
        height: 115px;
    }
    
    .badge-check svg {
        width: 30px;
        height: 30px;
    }
    
    .ring-1 { width: 160px; height: 160px; }
    .ring-2 { width: 220px; height: 220px; }
    
    .qa-hero-wave svg {
        height: 80px;
    }
    
    .qa-services,
    .qa-standards,
    .qa-process,
    .qa-benefits,
    .qa-cta {
        padding: 5rem 1rem;
    }
    
    .qa-service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .qa-check-icon {
        margin: 0 auto;
    }
    
    .qa-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qa-process-flow {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .qa-process-connector {
        display: none;
    }
    
    .qa-process-step {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        text-align: left;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .qa-process-step:last-child {
        border-bottom: none;
    }
    
    .qa-process-step::before {
        display: none;
    }
    
    .process-number {
        width: 56px;
        height: 56px;
        min-width: 56px;
        background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 0;
        opacity: 1;
        color: var(--navy);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }
    
    .qa-step-text {
        flex: 1;
    }
    
    .qa-step-text h4 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .qa-step-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.75;
    }
    
    .qa-benefits-stats {
        display: none;
    }
    
    .qa-benefit {
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 16px;
        border: 1px solid rgba(26, 35, 50, 0.08);
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-text h4 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .qa-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .qa-cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .qa-standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .qa-standard-card {
        padding: 1.5rem 0.75rem;
    }
    
    .cert-tag {
        display: none;
    }
}

/* Logo link fix */
.logo-link {
    text-decoration: none;
    display: block;
}

.logo-link .logo {
    cursor: pointer;
}

