/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a1929;
    --secondary-dark: #1a365d;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --text-light: #f8f9fa;
    --text-gray: #a0aec0;
    --danger-red: #c53030;
    --success-green: #38a169;
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Security Alert */
.security-alert {
    background-color: var(--success-green);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Navigation */
.main-nav {
    background-color: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.secure-contact-btn {
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.secure-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(10, 25, 41, 0.9), rgba(10, 25, 41, 0.95)), 
                url('../images/uploads/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 25, 41, 0.9) 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.tagline-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.tagline-translation {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-gold);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-silver);
}

.btn-secondary:hover {
    background-color: rgba(192, 192, 192, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    background-color: rgba(26, 54, 93, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    padding: 0 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    background-color: rgba(212, 175, 55, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(10, 25, 41, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-heavy);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.trust-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(26, 54, 93, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 25, 41, 0.95), rgba(10, 25, 41, 0.98)), 
                url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Footer */
.main-footer {
    background-color: #0a0f1a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-motto {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-green);
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--accent-gold);
    width: 20px;
}

.obfuscated {
    font-family: monospace;
    letter-spacing: 3px;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 15px;
}

.footer-bottom {
    background-color: #050a14;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.separator {
    color: var(--text-gray);
}

.disclaimer {
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 0;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-dark);
        transition: var(--transition);
        padding: 40px 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .tagline-text {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Artistic About Page Styles */

/* Artistic Hero Section */
.artistic-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.9) 50%,
        rgba(20, 35, 55, 0.85) 100%),
        url('../assets/images/pattern-bg.jpg');
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/texture.png');
    opacity: 0.05;
    pointer-events: none;
}

.hero-geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.geo-pattern-1, .geo-pattern-2, .geo-pattern-3 {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.geo-pattern-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.geo-pattern-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: 10%;
    animation-delay: 5s;
}

.geo-pattern-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0% { transform: rotate(0deg) translateX(0px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-marker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.marker-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.marker-text {
    font-size: 0.9rem;
    color: var(--accent-silver);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.artistic-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-gold);
    position: relative;
    padding-left: 20px;
}

.title-line.accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    transform: translateY(-50%);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.divider-diamond {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    transform: rotate(45deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 500px;
}

.hero-stat-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-stat-card:hover {
    transform: perspective(1000px) rotateY(0deg);
    border-color: var(--accent-gold);
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.stat-card-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.stat-card-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 15px;
}

.footer-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.section-header-artistic {
    margin-bottom: 60px;
}

.section-title-artistic {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.title-number {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    opacity: 0.5;
}

.title-text {
    position: relative;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    padding-left: 70px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--accent-gold) 10%, 
        var(--accent-gold) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-date {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: var(--primary-dark);
    padding: 5px 15px;
    z-index: 2;
}

.timeline-content {
    background: rgba(26, 54, 93, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 25px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    grid-column: 2;
    z-index: 2;
}

/* Elite Team Section */
.elite-team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(15, 30, 50, 0.95) 0%,
        rgba(10, 25, 41, 0.95) 100%),
        url('../assets/images/team-bg.jpg');
    background-size: cover;
    position: relative;
}

.team-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, 
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%);
}

.team-grid-artistic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(10, 25, 41, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.team-card-header h3 {
    font-size: 1.3rem;
    color: var(--text-light);
}

.team-card-body {
    padding: 25px 30px;
}

.team-card-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-tag {
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.philosophy-quote {
    position: relative;
    padding: 40px;
}

.quote-mark {
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Playfair Display', serif;
    position: absolute;
    line-height: 1;
}

.quote-mark.top {
    top: 0;
    left: 0;
}

.quote-mark.bottom {
    bottom: -20px;
    right: 20px;
}

.quote-text {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
}

.philosophy-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-left: 40px;
}

.author-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.author-title {
    color: var(--accent-silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.principle-card {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(26, 54, 93, 0.3);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateX(10px);
    background: rgba(26, 54, 93, 0.5);
}

.principle-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 10px;
}

.principle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.principle-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Capabilities Showcase */
.capabilities-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.showcase-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, 
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%, 
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%);
}

.capabilities-grid-artistic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.capability-item-artistic {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

.capability-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.capability-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transform: scale(1);
    transition: var(--transition);
}

.capability-item-artistic:hover .capability-icon-bg {
    transform: scale(1.2);
    background: rgba(212, 175, 55, 0.2);
}

.capability-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 100px;
}

.capability-item-artistic h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.capability-item-artistic p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Vision Section */
.vision-artistic-section {
    padding: 120px 0;
    background: var(--primary-dark);
}

.vision-container {
    max-width: 900px;
    margin: 0 auto;
}

.vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.vision-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.vision-subtitle {
    font-size: 1.2rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.vision-card-main {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(26, 54, 93, 0.4) 100%);
    border-radius: 15px;
    padding: 2px;
}

.vision-card-inner {
    background: var(--primary-dark);
    border-radius: 13px;
    padding: 40px;
    height: 100%;
}

.vision-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    text-align: center;
    padding: 20px;
    background: rgba(26, 54, 93, 0.3);
    border-radius: 10px;
    transition: var(--transition);
}

.pillar:hover {
    background: rgba(26, 54, 93, 0.5);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.pillar h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.vision-quote {
    display: flex;
    align-items: flex-end;
}

.quote-container {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-line-small {
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.quote-author span {
    font-size: 0.9rem;
    color: var(--accent-silver);
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.95) 100%),
        url('../assets/images/cta-pattern.jpg');
    background-size: cover;
    position: relative;
    text-align: center;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%);
}

.cta-content-artistic {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--accent-silver);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-artistic {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-artistic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.5s;
}

.btn-artistic:hover::before {
    left: 100%;
}

.btn-artistic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.btn-artistic:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .artistic-title {
        font-size: 3rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .vision-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .artistic-title {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
        text-align: center;
    }
    
    .timeline-icon {
        margin: 0 auto;
    }
    
    .timeline-date {
        justify-self: center;
    }
    
    .team-grid-artistic,
    .capabilities-grid-artistic {
        grid-template-columns: 1fr;
    }
    
    .vision-pillars {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .artistic-title {
        font-size: 2rem;
    }
    
    .hero-stat-card {
        transform: none;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .vision-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Services Page Styles */

/* Services Hero */
.services-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.9) 50%,
        rgba(20, 35, 55, 0.85) 100%),
        url('../assets/images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, 
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%, 
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-line {
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-title .highlight {
    color: var(--accent-gold);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 25px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.8rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Services Categories Navigation */
.services-categories {
    padding: 25px 0;
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 990;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(26, 54, 93, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-gray);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-nav-item:hover {
    background: rgba(26, 54, 93, 0.5);
    color: var(--text-light);
    transform: translateY(-2px);
}

.category-nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.category-nav-item i {
    font-size: 1.1rem;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
    position: relative;
}

.service-section:nth-child(odd) {
    background: var(--primary-dark);
}

.service-section:nth-child(even) {
    background: var(--secondary-dark);
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/texture.png');
    opacity: 0.03;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 54, 93, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--accent-silver);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.service-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.service-tag span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Process */
.service-process {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.95) 100%);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.process-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-gold) 0%, 
        rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services CTA */
.services-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.95) 100%),
        url('../assets/images/cta-services.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    margin-bottom: 30px;
}

.cta-badge i {
    color: var(--accent-gold);
}

.cta-badge span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.security-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .categories-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .categories-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .categories-nav::-webkit-scrollbar-track {
        background: rgba(212, 175, 55, 0.1);
    }
    
    .categories-nav::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .process-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Contact Page Styles */

/* Security Header */
.security-header {
    background: linear-gradient(90deg, var(--success-green), #2a7a4a);
    color: white;
    padding: 15px 0;
}

.security-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.security-icon {
    font-size: 1.5rem;
}

.security-message h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.security-message p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.status-indicator.active {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Hero */
.contact-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.9) 100%),
        url('../assets/images/contact-bg.jpg');
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.encryption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.encryption-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: scan 20s linear infinite;
}

.encryption-line:nth-child(1) {
    top: 20%;
    width: 100%;
    animation-delay: 0s;
}

.encryption-line:nth-child(2) {
    top: 50%;
    width: 80%;
    left: 10%;
    animation-delay: 5s;
}

.encryption-line:nth-child(3) {
    top: 80%;
    width: 60%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
}

.contact-badge i {
    color: var(--accent-gold);
}

.contact-badge span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-title .highlight {
    color: var(--accent-gold);
    position: relative;
}

.contact-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.security-levels {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.security-level {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-width: 250px;
}

.level-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.level-info h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.level-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.level-status {
    margin-left: auto;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.status-dot.secure {
    background: var(--success-green);
    box-shadow: 0 0 10px var(--success-green);
}

.status-dot.ultra-secure {
    background: #8b5cf6;
    box-shadow: 0 0 10px #8b5cf6;
    animation: pulse 1.5s infinite;
}

/* Communication Options */
.communication-options {
    padding: 100px 0;
    background: var(--primary-dark);
}

.options-header {
    text-align: center;
    margin-bottom: 60px;
}

.options-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.options-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.level-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.level-badge.ultra-secure {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.level-badge.secure {
    background: rgba(56, 161, 105, 0.2);
    color: var(--success-green);
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.option-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.option-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* PGP Card Specific */
.public-key-display {
    background: rgba(10, 25, 41, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.key-fingerprint {
    font-family: monospace;
    color: var(--accent-gold);
    font-size: 0.9rem;
    word-break: break-all;
    display: block;
    margin-bottom: 10px;
}

.copy-key-btn {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-key-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.key-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.btn-key-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: rgba(26, 54, 93, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-key-action:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.option-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.security-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-green);
    font-size: 0.9rem;
}

.option-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.option-cta:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Web Form Card */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group label i {
    color: var(--accent-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 25, 41, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.char-counter {
    text-align: right;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.form-security {
    margin: 25px 0;
    padding: 20px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.security-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.security-check:last-child {
    margin-bottom: 0;
}

.security-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--accent-gold);
}

.security-check label {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.btn-submit-encrypted {
    flex: 1;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-encrypted:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-clear-form {
    padding: 15px 25px;
    background: rgba(197, 48, 48, 0.1);
    color: var(--danger-red);
    border: 1px solid rgba(197, 48, 48, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-clear-form:hover {
    background: rgba(197, 48, 48, 0.2);
}

/* Voice Card */
.voice-options {
    margin: 25px 0;
}

.voice-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.voice-option:last-child {
    margin-bottom: 0;
}

.voice-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.voice-details {
    flex-grow: 1;
}

.voice-details h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.obfuscated {
    font-family: monospace;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.revealed {
    font-family: monospace;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 600;
}

.reveal-btn {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.reveal-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(56, 161, 105, 0.1);
    color: var(--success-green);
    border: 1px solid rgba(56, 161, 105, 0.3);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-schedule:hover {
    background: rgba(56, 161, 105, 0.2);
}

.messaging-ids {
    margin-top: 10px;
}

.messaging-id {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.messaging-id strong {
    color: var(--text-light);
    margin-right: 10px;
}

.voice-instructions {
    margin-top: 25px;
    padding: 20px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.voice-instructions h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.voice-instructions ol {
    padding-left: 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

.voice-instructions li {
    margin-bottom: 8px;
}

/* PGP Instructions */
.pgp-instructions {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.instructions-header {
    text-align: center;
    margin-bottom: 60px;
}

.instructions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.instructions-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.instructions-steps {
    max-width: 800px;
    margin: 0 auto;
}

.instruction-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.code-block {
    display: block;
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 20px;
    font-family: monospace;
    color: var(--accent-silver);
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-top: 15px;
}

.software-options {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.software {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.software i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.software span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.secure-email-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.secure-email-address i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.secure-email-address a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.secure-email-address a:hover {
    text-decoration: underline;
}

.note {
    font-style: italic;
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Emergency Contact */
.emergency-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.95) 100%),
        url('../assets/images/emergency-bg.jpg');
    background-size: cover;
    position: relative;
}

.emergency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(197, 48, 48, 0.1);
}

.emergency-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 25, 41, 0.9);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(197, 48, 48, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(197, 48, 48, 0.3);
}

.emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 48, 48, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--danger-red);
}

.emergency-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 0;
}

.emergency-warning {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(197, 48, 48, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(197, 48, 48, 0.3);
}

.emergency-warning h3 {
    color: var(--danger-red);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.emergency-warning p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.emergency-procedure h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.emergency-procedure ol {
    padding-left: 25px;
    margin-bottom: 30px;
}

.emergency-procedure li {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.emergency-numbers {
    margin-top: 30px;
}

.emergency-number {
    text-align: center;
    padding: 25px;
    background: rgba(10, 25, 41, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(197, 48, 48, 0.3);
}

.emergency-number h5 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.number-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.number-display code {
    font-size: 1.8rem;
    font-family: monospace;
    letter-spacing: 3px;
}

.emergency-reveal {
    padding: 12px 25px;
    background: rgba(197, 48, 48, 0.2);
    color: var(--danger-red);
    border: 2px solid var(--danger-red);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-reveal:hover {
    background: rgba(197, 48, 48, 0.3);
    transform: translateY(-2px);
}

/* Security Disclaimer */
.security-disclaimer {
    padding: 80px 0;
    background: var(--primary-dark);
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.disclaimer-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.disclaimer-text h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.disclaimer-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.disclaimer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.disclaimer-tag {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--primary-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.modal-icon.success {
    background: rgba(56, 161, 105, 0.2);
    color: var(--success-green);
}

.modal-header h3 {
    flex-grow: 1;
    margin: 0 20px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-light);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-confirmation {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.security-confirmation i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.security-confirmation span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.security-confirmation code {
    color: var(--accent-gold);
    font-family: monospace;
    margin-left: 5px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: right;
}

.btn-modal {
    padding: 12px 30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .security-levels {
        flex-direction: column;
        align-items: center;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .security-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .options-header h2 {
        font-size: 2.2rem;
    }
    
    .emergency-content {
        padding: 30px 20px;
    }
    
    .emergency-header {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-header h2 {
        font-size: 2rem;
    }
    
    .instruction-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .phone-number {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .option-card {
        padding: 25px 20px;
    }
    
    .emergency-header h2 {
        font-size: 1.8rem;
    }
    
    .instructions-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
}

/* Corporate Intelligence Page Styles */

/* Hero Section */
.corporate-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.9) 100%),
        url('../assets/images/corporate-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 0 80px;
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, 
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%, 
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px 25px;
    background: rgba(56, 161, 105, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-line {
    width: 30px;
    height: 1px;
    background: var(--success-green);
    opacity: 0.5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-gold);
    position: relative;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 25px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.2;
}

.overview-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.highlight span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.overview-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px;
}

.frame-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
}

/* Corporate Services */
.corporate-services {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 54, 93, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.service-cta:hover {
    gap: 15px;
    border-bottom-color: var(--accent-gold);
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.methodology-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.methodology-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-gold) 0%, 
        rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.case-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.case-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.case-tag span {
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.case-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.case-outcome {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--primary-dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage {
    text-align: center;
    padding: 30px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.advantage:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.advantage:hover .advantage-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.advantage h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.advantage p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Industries Served */
.industries-served {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry {
    text-align: center;
    padding: 25px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.industry:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.industry h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.industry p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.corporate-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(15, 30, 50, 0.95) 100%),
        url('../assets/images/corporate-cta.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
}

.cta-badge i {
    color: var(--accent-gold);
}

.cta-badge span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.security-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .overview-highlights {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .methodology-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-highlights {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .advantages-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Cyber Investigations Page Styles */

/* Cyber Hero Section */
.cyber-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(5, 20, 40, 0.9) 100%),
        url('../assets/images/cyber-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.cyber-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.3;
}

.binary-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 255, 255, 0.05) 50%,
        transparent 100%);
    font-family: monospace;
    font-size: 1.2rem;
    color: rgba(0, 255, 255, 0.3);
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: hidden;
}

.matrix-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.matrix-particle {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 255, 255, 0.8) 50%,
        transparent 100%);
    animation: matrixFall linear infinite;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.cyber-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cyber-badge i {
    color: #00ffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.cyber-badge span {
    font-size: 0.9rem;
    color: #00ffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cyber-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: #00ffff;
    position: relative;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.2);
    z-index: -1;
}

.cyber-subtitle {
    font-size: 1.2rem;
    color: #a0f0f0;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cyber-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.cyber-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffff;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.cyber-scroll span {
    font-size: 0.8rem;
    color: #00ffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.scan-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #00ffff, transparent);
    animation: scan 2s infinite;
}

@keyframes scan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* Threat Landscape */
.threat-landscape {
    padding: 100px 0;
    background: var(--primary-dark);
}

.section-header-cyber {
    text-align: center;
    margin-bottom: 60px;
}

.section-marker-cyber {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hex-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 255, 255, 0.3);
    background: rgba(26, 54, 93, 0.5);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 255, 0.2);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.section-header-cyber h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.section-description {
    font-size: 1.2rem;
    color: #a0f0f0;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.threat-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.threat-card:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.threat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, transparent);
}

.threat-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #00ffff;
}

.threat-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.threat-card p {
    color: #a0f0f0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.threat-level {
    margin-top: 20px;
}

.level-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.level-tag.critical {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.level-tag.severe {
    background: rgba(255, 165, 0, 0.1);
    color: #ffaa00;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.level-tag.high {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

/* Cyber Services */
.cyber-services {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.cyber-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 49%, #00ffff 50%, transparent 51%),
        linear-gradient(transparent 49%, #00ffff 50%, transparent 51%);
    background-size: 50px 50px;
}

.cyber-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cyber-service-card {
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cyber-service-card:hover {
    border-color: #00ffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.cyber-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cyber-service-card:hover::before {
    transform: translateX(0);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-hexagon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: var(--transition);
}

.cyber-service-card:hover .service-hexagon {
    background: rgba(0, 255, 255, 0.2);
    transform: rotate(30deg);
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
}

.service-body {
    margin-bottom: 25px;
}

.service-body p {
    color: #a0f0f0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cyber-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cyber-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0f0f0;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cyber-features i {
    color: #00ffff;
    font-size: 0.8rem;
}

.service-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cyber-service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.cyber-service-cta:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateX(5px);
}

.cyber-service-cta.emergency {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border-color: rgba(255, 0, 0, 0.3);
}

.cyber-service-cta.emergency:hover {
    background: rgba(255, 0, 0, 0.2);
    animation: emergencyPulse 1s infinite;
}

@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    }
}

/* Forensic Lab */
.forensic-lab {
    padding: 100px 0;
    background: var(--primary-dark);
}

.lab-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.lab-feature {
    text-align: center;
    padding: 30px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.lab-feature:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #00ffff;
}

.lab-feature h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.lab-feature p {
    color: #a0f0f0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.lab-certifications {
    text-align: center;
    padding: 40px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.lab-certifications h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.cert-badge i {
    font-size: 2rem;
    color: #00ffff;
}

.cert-badge span {
    color: #a0f0f0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Cyber Process */
.cyber-process {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.cyber-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 49%, #00ffff 50%, transparent 51%),
        linear-gradient(transparent 49%, #00ffff 50%, transparent 51%);
    background-size: 100px 100px;
    animation: networkShift 20s linear infinite;
}

@keyframes networkShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.process-timeline {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-hexagon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    flex-shrink: 0;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.step-content {
    flex-grow: 1;
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.step-content p {
    color: #a0f0f0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-connector {
    display: flex;
    align-items: center;
    width: 100px;
    flex-shrink: 0;
}

.connector-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, rgba(0, 255, 255, 0.3));
}

.connector-arrow {
    color: #00ffff;
    font-size: 1.2rem;
}

/* Cyber Cases */
.cyber-cases {
    padding: 100px 0;
    background: var(--primary-dark);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cyber-case {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.cyber-case:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffff;
    flex-shrink: 0;
}

.case-content {
    flex-grow: 1;
}

.case-tag span {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.case-content h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.case-content p {
    color: #a0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.case-outcome {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Cyber Emergency */
.cyber-emergency {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(20, 10, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.emergency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.warning-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 0, 0, 0.1) 0%,
        rgba(255, 0, 0, 0.05) 30%,
        transparent 70%);
    animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.emergency-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 25, 41, 0.9);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.warning-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff4444;
    animation: warningIcon 2s infinite;
}

@keyframes warningIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.emergency-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 0;
}

.emergency-info p {
    text-align: center;
    color: #ffaaaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.emergency-steps {
    margin-bottom: 40px;
}

.emergency-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-instruction h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.step-instruction p {
    color: #ffaaaa;
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
}

.emergency-contacts {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #ff4444;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emergency-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.emergency-btn.pulse {
    animation: emergencyBtnPulse 1s infinite;
}

@keyframes emergencyBtnPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
    }
}

.emergency-btn.secondary {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-color: #00ffff;
}

.emergency-btn.secondary:hover {
    background: rgba(0, 255, 255, 0.2);
}

/* Cyber CTA */
.cyber-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(5, 20, 40, 0.95) 100%),
        url('../assets/images/cyber-cta.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cyber-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #00ffff 50%,
        transparent 100%);
    animation: dataStream 3s linear infinite;
}

@keyframes dataStream {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.cyber-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge-cyber {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-badge-cyber i {
    color: #00ffff;
}

.cta-badge-cyber span {
    font-size: 0.9rem;
    color: #00ffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cyber-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cyber-cta-content p {
    font-size: 1.2rem;
    color: #a0f0f0;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cyber-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cyber-primary, .btn-cyber-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cyber-primary {
    background: linear-gradient(135deg, #00ffff, #0099cc);
    color: var(--primary-dark);
}

.btn-cyber-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.btn-cyber-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid rgba(0, 255, 255, 0.5);
}

.btn-cyber-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    transform: translateY(-3px);
}

.cyber-security-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50px;
    color: #00ffff;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .cyber-title {
        font-size: 3rem;
    }
    
    .section-header-cyber h2 {
        font-size: 2.5rem;
    }
    
    .cyber-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-connector {
        transform: rotate(90deg);
        width: auto;
        height: 60px;
        margin: 10px 0;
    }
    
    .cyber-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cyber-title {
        font-size: 2.5rem;
    }
    
    .cyber-services-grid {
        grid-template-columns: 1fr;
    }
    
    .threat-grid {
        grid-template-columns: 1fr;
    }
    
    .lab-features {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cyber-case {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-contacts {
        flex-direction: column;
    }
    
    .emergency-btn {
        width: 100%;
    }
    
    .cyber-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cyber-primary, .btn-cyber-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cyber-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cyber-title {
        font-size: 2rem;
    }
    
    .cyber-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header-cyber h2 {
        font-size: 2rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-header {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-header h2 {
        font-size: 2rem;
    }
    
    .cyber-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Litigation Support Page Styles */

/* Litigation Hero */
.litigation-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(20, 35, 60, 0.9) 100%),
        url('../assets/images/litigation-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.justice-scale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.1;
}

.scale-left, .scale-right {
    position: absolute;
    width: 150px;
    height: 300px;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--accent-gold) 50%,
        transparent 100%);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
    transition: transform 2s ease;
}

.scale-left {
    left: calc(50% - 200px);
    transform-origin: bottom center;
}

.scale-right {
    right: calc(50% - 200px);
    transform-origin: bottom center;
}

.scale-beam {
    position: absolute;
    width: 400px;
    height: 8px;
    background: var(--accent-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.litigation-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.litigation-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.litigation-badge i {
    color: var(--accent-gold);
}

.litigation-badge span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.litigation-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-gold);
    position: relative;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.litigation-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.litigation-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 25px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 120px;
    margin: 0 auto;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.legal-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.legal-scroll span {
    font-size: 0.8rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.gavel-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Legal Expertise */
.legal-expertise {
    padding: 100px 0;
    background: var(--primary-dark);
}

.section-header-legal {
    text-align: center;
    margin-bottom: 60px;
}

.section-marker-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legal-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 54, 93, 0.5);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.section-header-legal h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.expertise-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.expertise-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Litigation Services */
.litigation-services {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.legal-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
}

.legal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 49px, 
            rgba(212, 175, 55, 0.1) 49px, rgba(212, 175, 55, 0.1) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, 
            rgba(212, 175, 55, 0.1) 49px, rgba(212, 175, 55, 0.1) 50px);
}

.services-grid-legal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.legal-service-card {
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.legal-service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.legal-service-card:hover::before {
    transform: translateX(0);
}

.service-header-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-legal {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.service-tag-legal span {
    padding: 6px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-service-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.legal-service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.legal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.legal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.legal-features i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.legal-service-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.legal-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.legal-service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-service-cta:hover {
    background: rgba(212, 175, 55, 0.2);
    gap: 15px;
}

/* Case Types */
.case-types {
    padding: 100px 0;
    background: var(--primary-dark);
}

.case-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-type-card {
    text-align: center;
    padding: 35px;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.case-type-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.case-type-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.case-type-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.case-type-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.case-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-example {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Evidence Standards */
.evidence-standards {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.evidence-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.evidence-chain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.chain-link {
    width: 20px;
    height: 20px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: chainFloat 3s ease-in-out infinite;
}

@keyframes chainFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.standards-process {
    max-width: 900px;
    margin: 0 auto 60px;
}

.standard-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.standard-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number-legal {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.step-content-legal {
    flex-grow: 1;
    background: rgba(10, 25, 41, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.step-content-legal h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-content-legal p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.standard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-features li {
    color: var(--accent-silver);
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.standard-features li::before {
    content: '✓';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

.legal-certifications {
    text-align: center;
    padding: 40px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-certifications h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.certification-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.certification-item span {
    color: var(--accent-silver);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Legal Success Stories */
.legal-success {
    padding: 100px 0;
    background: var(--primary-dark);
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.success-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.success-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.success-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.success-category span {
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.success-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.success-outcome {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(56, 161, 105, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.outcome-icon {
    width: 40px;
    height: 40px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.outcome-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.outcome-text strong {
    color: var(--success-green);
}

/* Attorney Partnership */
.attorney-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(20, 35, 60, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.partnership-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
}

.legal-books {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 20px, 
            rgba(212, 175, 55, 0.1) 20px, 
            rgba(212, 175, 55, 0.1) 40px);
}

.partnership-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 25, 41, 0.9);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.partnership-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
}

.partnership-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 0;
}

.partnership-benefits p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
    padding: 25px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.benefit h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.benefit p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.attorney-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.attorney-cta {
    padding: 20px 35px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attorney-cta:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.attorney-cta.pulse {
    animation: attorneyPulse 2s infinite;
}

@keyframes attorneyPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    }
}

.attorney-phone {
    padding: 20px 35px;
    background: rgba(26, 54, 93, 0.6);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.attorney-phone:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Legal CTA */
.legal-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(20, 35, 60, 0.95) 100%),
        url('../assets/images/legal-cta.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.legal-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

.courtroom-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, 
            transparent, 
            transparent 49px, 
            rgba(212, 175, 55, 0.1) 49px, 
            rgba(212, 175, 55, 0.1) 50px);
}

.legal-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-badge-legal i {
    color: var(--accent-gold);
}

.cta-badge-legal span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-legal-primary, .btn-legal-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-legal-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
}

.btn-legal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-legal-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.btn-legal-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.legal-confidentiality {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .litigation-title {
        font-size: 3rem;
    }
    
    .section-header-legal h2 {
        font-size: 2.5rem;
    }
    
    .litigation-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-divider {
        width: 100%;
        height: 1px;
    }
    
    .services-grid-legal {
        grid-template-columns: 1fr;
    }
    
    .standard-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .legal-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .litigation-title {
        font-size: 2.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .case-types-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .attorney-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .attorney-cta, .attorney-phone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .legal-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-legal-primary, .btn-legal-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .legal-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .litigation-title {
        font-size: 2rem;
    }
    
    .litigation-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header-legal h2 {
        font-size: 2rem;
    }
    
    .partnership-header {
        flex-direction: column;
        text-align: center;
    }
    
    .partnership-header h2 {
        font-size: 2rem;
    }
    
    .legal-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Special Operations Page Styles */

/* Special Ops Hero */
.special-ops-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(5, 15, 30, 0.9) 100%),
        url('../assets/images/ops-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.ops-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.crosshair::before, .crosshair::after {
    content: '';
    position: absolute;
    background: rgba(212, 175, 55, 0.3);
}

.crosshair::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.crosshair::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

.radar-sweep::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: conic-gradient(transparent, rgba(0, 255, 0, 0.2), transparent);
    transform-origin: 0 0;
}

@keyframes radarSweep {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ops-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.ops-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ops-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.ops-badge i {
    color: var(--accent-gold);
}

.ops-badge span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ops-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-gold);
    position: relative;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.ops-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.ops-capabilities {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 25px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.capability {
    display: flex;
    align-items: center;
    gap: 15px;
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.capability-info {
    display: flex;
    flex-direction: column;
}

.capability-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 3px;
}

.capability-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.capability-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.ops-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.ops-scroll span {
    font-size: 0.8rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.targeting-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
}

@keyframes targetingScan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* Elite Personnel */
.elite-personnel {
    padding: 100px 0;
    background: var(--primary-dark);
}

.section-header-ops {
    text-align: center;
    margin-bottom: 60px;
}

.section-marker-ops {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ops-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 54, 93, 0.5);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.section-header-ops h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.personnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.personnel-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: var(--transition);
}

.personnel-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.personnel-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 3rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.security-level {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 175, 55, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.security-level span {
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.personnel-info {
    flex-grow: 1;
}

.personnel-info h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.personnel-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.personnel-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Specialized Services */
.specialized-services {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.ops-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
}

.topographic-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 49px, 
            rgba(212, 175, 55, 0.1) 49px, rgba(212, 175, 55, 0.1) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, 
            rgba(212, 175, 55, 0.1) 49px, rgba(212, 175, 55, 0.1) 50px);
}

.ops-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.ops-service-card {
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ops-service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ops-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ops-service-card:hover::before {
    transform: translateX(0);
}

.service-header-ops {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-ops {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.service-category-ops span {
    padding: 6px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ops-service-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ops-service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ops-capabilities-list {
    margin-bottom: 25px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.capability-item i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.ops-equipment {
    margin-bottom: 25px;
}

.ops-equipment h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.equipment-tag {
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ops-service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ops-service-cta:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.ops-service-cta.emergency {
    background: rgba(197, 48, 48, 0.1);
    color: var(--danger-red);
    border-color: rgba(197, 48, 48, 0.3);
}

.ops-service-cta.emergency:hover {
    background: rgba(197, 48, 48, 0.2);
    animation: opsEmergencyPulse 1s infinite;
}

@keyframes opsEmergencyPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(197, 48, 48, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(197, 48, 48, 0.4);
    }
}

/* Operational Methodology */
.ops-methodology {
    padding: 100px 0;
    background: var(--primary-dark);
}

.methodology-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.methodology-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.methodology-step:last-child {
    margin-bottom: 0;
}

.step-marker-ops {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step-content-ops {
    flex-grow: 1;
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.step-content-ops h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-content-ops p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    color: var(--accent-silver);
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.step-features li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* Operational Equipment */
.ops-equipment-section {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.equipment-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-line {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    animation: gridPulse 2s ease-in-out infinite;
}

.grid-line:nth-child(odd) {
    top: 0;
    bottom: 0;
    width: 1px;
    left: calc(var(--index) * 10%);
}

.grid-line:nth-child(even) {
    left: 0;
    right: 0;
    height: 1px;
    top: calc(var(--index) * 10%);
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.equipment-category {
    text-align: center;
    padding: 35px;
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.equipment-category:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent-gold);
}

.equipment-category h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.equipment-category p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.equipment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.equipment-list span {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 15px;
    font-size: 0.85rem;
}

.equipment-disclaimer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.equipment-disclaimer i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.equipment-disclaimer p {
    color: var(--accent-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Operational Success */
.ops-success {
    padding: 100px 0;
    background: var(--primary-dark);
}

.success-operations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.operation-card {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.operation-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.operation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.operation-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.operation-type span {
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.operation-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.operation-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.operation-outcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.outcome-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.outcome-badge.success {
    background: rgba(56, 161, 105, 0.1);
    color: var(--success-green);
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.outcome-badge i {
    font-size: 0.8rem;
}

.operation-stats {
    display: flex;
    gap: 15px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Operational Security */
.ops-security {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.security-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
}

.secure-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 20px, 
            rgba(212, 175, 55, 0.1) 20px, 
            rgba(212, 175, 55, 0.1) 40px);
}

.security-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 25, 41, 0.9);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
}

.security-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 0;
}

.security-protocols {
    margin-bottom: 40px;
}

.protocol {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.protocol.animated {
    opacity: 1;
    transform: translateY(0);
}

.protocol:last-child {
    margin-bottom: 0;
}

.protocol-number {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.protocol-content {
    flex-grow: 1;
    padding: 20px;
    background: rgba(26, 54, 93, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.protocol-content h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.protocol-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.security-assurance {
    text-align: center;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.assurance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.assurance-badge i {
    font-size: 1rem;
}

.security-assurance p {
    color: var(--accent-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Ops CTA */
.ops-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(5, 15, 30, 0.95) 100%),
        url('../assets/images/ops-cta.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.ops-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.night-vision {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(0, 255, 0, 0.05) 0%,
        transparent 70%);
    filter: sepia(1) hue-rotate(60deg) brightness(0.6);
    transition: filter 2s ease;
}

.ops-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge-ops {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-badge-ops i {
    color: var(--accent-gold);
}

.cta-badge-ops span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ops-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.ops-cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ops-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-ops-primary, .btn-ops-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ops-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: var(--primary-dark);
}

.btn-ops-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-ops-secondary {
    background: rgba(197, 48, 48, 0.1);
    color: var(--danger-red);
    border: 2px solid rgba(197, 48, 48, 0.5);
}

.btn-ops-secondary:hover {
    background: rgba(197, 48, 48, 0.2);
    border-color: var(--danger-red);
    transform: translateY(-3px);
}

.btn-ops-secondary.pulse {
    animation: opsCtaPulse 2s infinite;
}

@keyframes opsCtaPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(197, 48, 48, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(197, 48, 48, 0.5);
    }
}

.ops-security-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .ops-title {
        font-size: 3rem;
    }
    
    .section-header-ops h2 {
        font-size: 2.5rem;
    }
    
    .ops-capabilities {
        flex-direction: column;
        gap: 20px;
    }
    
    .capability-divider {
        width: 100%;
        height: 1px;
    }
    
    .personnel-card {
        flex-direction: column;
        text-align: center;
    }
    
    .methodology-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .protocol {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .ops-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ops-title {
        font-size: 2.5rem;
    }
    
    .ops-services-grid {
        grid-template-columns: 1fr;
    }
    
    .personnel-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-categories {
        grid-template-columns: 1fr;
    }
    
    .success-operations {
        grid-template-columns: 1fr;
    }
    
    .operation-outcome {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ops-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-ops-primary, .btn-ops-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .ops-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ops-title {
        font-size: 2rem;
    }
    
    .ops-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header-ops h2 {
        font-size: 2rem;
    }
    
    .security-header {
        flex-direction: column;
        text-align: center;
    }
    
    .security-header h2 {
        font-size: 2rem;
    }
    
    .ops-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* CRITICAL ICON FIXES - ADD TO TOP OF STYLE.CSS */

/* Reset all Font Awesome styles */
i.fas, i.far, i.fab, i.fa {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    line-height: 1 !important;
    speak: none !important;
}

/* Force display for all icon containers */
[class*="icon"] i,
[class*="Icon"] i,
.service-icon i,
.expertise-icon i,
.case-type-icon i,
.advantage-icon i,
.team-icon i,
.threat-icon i,
.personnel-photo i,
.operation-icon i,
.success-icon i,
.security-icon i,
.warning-icon i,
.emergency-icon i,
.partnership-icon i,
.cta-badge i,
.hero-badge i,
.contact-badge i,
.litigation-badge i,
.cyber-badge i,
.ops-badge i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Test border for debugging - remove once icons work */
.service-icon,
.expertise-icon,
.case-type-icon,
.advantage-icon {
    border: 2px solid red !important;
    min-height: 50px;
    min-width: 50px;
}

/* If you see red borders, icons are not displaying */