/* ==========================================================================
   Access Solutions Page Styles
   ========================================================================== */

/* --- Cinematic Hero Section --- */
.access-hero {
    position: relative;
    padding: 180px 5% 150px;
    background: url('assets/cctv_banner.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.access-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 32, 0.95), rgba(10, 17, 32, 0.8));
    z-index: 1;
}

.access-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.access-hero .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 57, 53, 0.2);
    border: 1px solid rgba(229, 57, 53, 0.4);
    color: #ffb5b3;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.access-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.access-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.access-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    gap: 12px;
}

/* --- Dark Themed Metrics Section --- */
.access-metrics {
    background: #060b14;
    padding: 60px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.metric-box {
    text-align: center;
    color: var(--white);
    flex: 1;
}

.metric-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.9;
}

.metric-box h3 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 5px;
    color: var(--white);
}

.metric-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Alternating Zig-Zag Section --- */
.zigzag-section {
    padding: 100px 5%;
    background: #f8f9fa; /* Very light modern gray */
}

.zigzag-row {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-row.reverse-row {
    flex-direction: row-reverse;
}

/* Image Side */
.zig-image {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.zig-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.zigzag-row:hover .zig-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.reverse-row .image-overlay {
    left: auto;
    right: 30px;
}

/* Content Side */
.zig-content {
    flex: 1;
}

.zig-content .tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.zig-content h2 {
    font-size: 2.8rem;
    color: var(--navy);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.zig-content p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
}

.check-list i {
    color: var(--primary);
    font-size: 1.4rem;
}

/* --- Responsive Layouts --- */
@media (max-width: 1024px) {
    .access-hero h1 { font-size: 3.5rem; }
    
    .zigzag-row {
        gap: 50px;
    }
    
    .zig-content h2 { font-size: 2.4rem; }
    
    .zig-image img { height: 400px; }
}

@media (max-width: 768px) {
    .access-hero { padding: 150px 5% 100px; }
    .access-hero h1 { font-size: 2.5rem; }
    .access-hero p { font-size: 1.05rem; }
    
    .metrics-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .zigzag-row, .zigzag-row.reverse-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .zig-image { width: 100%; }
    .zig-image img { height: 350px; }
    .zig-content { text-align: center; }
    
    .check-list li {
        justify-content: center;
    }
}
