/* ================================================
   CORPORATE SECURITY PAGE STYLES
   ================================================ */

/* Remove gap between header and page content */
.main {
    padding-top: 0 !important;
}

/* Hero Section */
.corp-hero {
    background: linear-gradient(135deg, #161820 0%, #273F87 100%);
    padding: 140px 0 80px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.corp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 249, 228, 0.05);
    transform: rotate(-15deg);
    border-radius: 50%;
}

.corp-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.corp-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.corp-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff9e4;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Overview Section */
.corp-overview {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.corp-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.corp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(22, 24, 32, 0.05);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #273F87;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #161820;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Grid Section */
.corp-services {
    background-color: #ffffff;
    padding: 100px 0;
}

.corp-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #273F87 0%, #fff9e4 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(39, 63, 135, 0.1);
    cursor: pointer;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #161820;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.corp-process {
    background-color: #161820;
    padding: 100px 0;
    color: #ffffff;
}

.corp-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.corp-process__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #161820;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #273F87 0%, #fff9e4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-shadow: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

/* Industries Section */
.corp-industries {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.corp-industries__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.corp-industries__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #161820;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-badge {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #161820;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.industry-badge.visible {
    opacity: 1;
    transform: scale(1);
}

.industry-badge:hover {
    background: linear-gradient(135deg, #273F87 0%, #fff9e4 100%);
    color: #161820;
    border-color: #273F87;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(39, 63, 135, 0.2);
}

/* CTA Section */
.corp-cta {
    background: linear-gradient(135deg, #161820 0%, #273F87 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.corp-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.corp-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.corp-cta__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff9e4;
    margin-bottom: 40px;
    line-height: 1.6;
}

.corp-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
}

.cta-btn--primary {
    background: linear-gradient(135deg, #fff9e4 0%, #ffffff 100%);
    color: #161820;
    border: 2px solid #fff9e4;
}

.cta-btn--primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fff9e4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 249, 228, 0.3);
}

.cta-btn--secondary {
    background: transparent;
    color: #fff9e4;
    border: 2px solid #fff9e4;
}

.cta-btn--secondary:hover {
    background: #fff9e4;
    color: #161820;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 249, 228, 0.2);
}

/* Tablet Styles */
@media (max-width: 1023px) and (min-width: 768px) {
    .corp-hero {
        padding: 100px 0 60px 0;
    }
    
    .corp-hero__container,
    .corp-overview__container,
    .corp-services__container,
    .corp-process__container,
    .corp-industries__container,
    .corp-cta__container {
        padding: 0 30px;
    }
    
    .corp-hero__title {
        font-size: 48px;
        letter-spacing: 2px;
    }
    
    .corp-hero__subtitle {
        font-size: 20px;
    }
    
    .corp-overview,
    .corp-services,
    .corp-process,
    .corp-industries,
    .corp-cta {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .process-steps {
        justify-content: center;
        gap: 25px;
    }
    
    .process-step {
        min-width: 220px;
        max-width: 250px;
        padding: 35px 25px;
    }
    
    .corp-stats {
        gap: 40px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .corp-hero {
        padding: 80px 0 50px 0;
    }
    
    .corp-hero__container,
    .corp-overview__container,
    .corp-services__container,
    .corp-process__container,
    .corp-industries__container,
    .corp-cta__container {
        padding: 0 20px;
    }
    
    .corp-hero__title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .corp-hero__subtitle {
        font-size: 18px;
    }
    
    .corp-overview,
    .corp-services,
    .corp-process,
    .corp-industries,
    .corp-cta {
        padding: 60px 0;
    }
    
    .corp-process__title,
    .corp-industries__title,
    .corp-cta__title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .process-step {
        width: 100%;
        max-width: 350px;
        padding: 30px 25px;
    }
    
    .corp-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .corp-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 24, 32, 0.8);
    backdrop-filter: blur(5px);
}

.service-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-modal.active .service-modal__content {
    transform: translate(-50%, -50%) scale(1);
}

.service-modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.service-modal__close:hover {
    color: #161820;
}

.service-modal__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #161820;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-right: 40px;
}

.service-modal__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-modal__list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.service-modal__list li::before {
    content: '•';
    color: #273F87;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-modal__book {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #161820 0%, #273F87 100%);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.service-modal__book:hover {
    background: linear-gradient(135deg, #273F87 0%, #fff9e4 100%);
    color: #161820;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 63, 135, 0.3);
}

/* Mobile Modal Adjustments */
@media (max-width: 767px) {
    .service-modal__content {
        padding: 30px 25px;
        max-width: 95%;
    }
    
    .service-modal__title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-right: 35px;
    }
    
    .service-modal__list li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .service-modal__book {
        padding: 12px 24px;
        font-size: 15px;
    }
}
