/* Security Landing Page Styles */
/* ==================================== */

/* Design Tokens */
:root {
    --color-primary: #2C3E50;
    --color-accent: #27AE60;
    --color-light-bg: #ECF0F1;
    --color-text-dark: #2C2C2C;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-success: #27AE60;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ============================= */
/* Hero Section - Security */
/* ============================= */

.security-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.security-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.security-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.security-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.security-hero-text {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.security-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.security-hero-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.security-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* ============================= */
/* Security Services Section */
/* ============================= */

.security-services {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.security-service-card {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--color-accent);
}

.security-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.security-service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2.5rem 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-info p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--color-text-light);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================= */
/* Security CTA Section */
/* ============================= */

.security-cta {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2332 100%);
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================= */
/* Responsive Design */
/* ============================= */

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .security-services {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-services {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-image {
        height: 240px;
    }

    .service-info {
        padding: 2rem 1.5rem;
    }

    .service-info h3 {
        font-size: 1.4rem;
    }

    .security-cta {
        padding: 3rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .security-hero-title {
        font-size: 2rem;
    }

    .security-hero-description {
        font-size: 1rem;
    }

    .security-hero-buttons {
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-image {
        height: 200px;
    }

    .service-info {
        padding: 1.5rem;
    }

    .service-info h3 {
        font-size: 1.2rem;
    }

    .service-info p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    .security-cta {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
