/* --- Security Residential/Corporate Theme (Dark & Protective) --- */

/* 1. Global Wrapper for seamless background */
.unified-security-theme {
    position: relative;
    background-color: #0c0e12;
    /* Nearly black */
    background-image:
        radial-gradient(circle at 20% 40%, rgba(200, 30, 30, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(30, 100, 200, 0.1) 0%, transparent 40%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Digital Lock/Hexagon Grid Animation */
.unified-security-theme::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(30deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Hexagonal vibe */
    transform: perspective(1000px) rotateX(45deg);
    animation: hexGridMove 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes hexGridMove {
    0% {
        transform: perspective(1000px) rotateX(45deg) translateY(0);
    }

    100% {
        transform: perspective(1000px) rotateX(45deg) translateY(40px);
    }
}

/* 2. Hero Section */
.service-hero-security {
    background: transparent !important;
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title-security {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    /* Red glow for security alert/protection */
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.hero-title-security::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #dc2626;
    /* Red accent */
    margin: 10px auto 0;
    box-shadow: 0 0 10px #dc2626;
}

/* 3. Text & Content */
.unified-security-theme .content-wrapper p {
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(12, 14, 18, 0.6);
    border: 1px solid rgba(220, 38, 38, 0.2);
    /* Red border tint */
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 4. Pricing Cards (Security Packages) */
.pricing-section-security {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid-security {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card-security {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card-security:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #dc2626;
    /* Red border on hover */
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.pricing-header-security {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header-security h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.security-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
    transition: all 0.4s;
}

.pricing-card-security:hover .security-icon-wrapper {
    background: #dc2626;
    transform: rotateY(180deg);
}

.security-icon-wrapper i {
    font-size: 2.5rem;
    color: #dc2626;
    /* Red Icon */
    transition: color 0.4s;
}

.pricing-card-security:hover .security-icon-wrapper i {
    color: white;
}

.price-container-security {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.price-symbol {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.7;
}

.currency {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: 400;
}

.pricing-features-security ul {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.pricing-features-security li {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features-security li i {
    color: #10b981;
    /* Green check for features */
    font-size: 1.1rem;
}

.pricing-cta-security {
    padding: 0 30px 40px;
    text-align: center;
}

.btn-security {
    background: transparent;
    border: 2px solid #dc2626;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-security:hover {
    background: #dc2626;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

/* Feature Ribbons */
.pricing-card-security.featured {
    border: 2px solid #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.2);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #dc2626;
    color: white;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Description Text in Cards */
.security-card-desc {
    transition: color 0.3s ease;
}

.pricing-card-security:hover .security-card-desc {
    color: #e2e8f0 !important;
    /* Lighter text on hover */
}