/* Empire Builder Page Styles */

/* Additional Empire-specific styling to complement strategic.css */

/* Empire Hero Section Enhancements */
.empire-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #2a2a2a 70%, #000000 100%);
}

.empire-hero .hero-background {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

/* War Choice Section */
.war-choice {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.war-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Survival Section */
.survival-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 6rem 0;
    position: relative;
}

.survival-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.survival-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.survival-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 3rem;
    position: relative;
}

.survival-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #000000, #333333);
}

.survival-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
}

.survival-text p {
    margin-bottom: 2rem;
}

.intervention-promise {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    font-style: italic;
    margin-top: 2rem;
}

/* Intervention Section */
.intervention-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
}

.intervention-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.intervention-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.intervention-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intervention-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.intervention-text p {
    margin-bottom: 2rem;
}

.sovereign-promise {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    margin-top: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Services Section Enhancements */
.services-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #333333;
}

.service-card.featured {
    border-color: #000000;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    transform: scale(1.02);
    padding-top: 2rem;
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    padding: 0.4rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.service-header {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.3;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.8rem;
}

.service-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.service-details {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.feature {
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.service-outcome {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    flex-shrink: 0;
}

.service-outcome p {
    margin: 0;
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.5;
}

.service-cta {
    margin-top: auto;
    padding-top: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #333333, #000000);
}

.featured-btn {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 8rem 0;
    color: white;
}

.why-section .section-title {
    color: #ffffff;
}

.why-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.why-section .section-line {
    background: linear-gradient(45deg, #ffffff, #cccccc);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.credential-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.credential-icon i {
    color: #ffffff;
}

.credential-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.credential-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-statement {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.statement-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 8rem 0;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.cta-item {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #333333;
}

.cta-item.featured {
    border-color: #000000;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    transform: scale(1.05);
}

.cta-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-price {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
}

.cta-description {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    font-style: italic;
}

.service-btn-text, .featured-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
}

.service-btn-text:hover, .featured-btn-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #333333, #000000);
}

.featured-btn-text {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-text {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.final-cta-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #333333, #000000);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem;
    }
    
    .service-card.featured {
        padding-top: 1.8rem;
    }
}

@media (max-width: 768px) {
    .empire-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .war-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .survival-title,
    .intervention-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured {
        transform: none;
        padding-top: 1.5rem;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-item.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .empire-hero .hero-title {
        font-size: 2rem;
    }
    
    .war-title {
        font-size: 1.5rem;
    }
    
    .survival-title,
    .intervention-title {
        font-size: 2rem;
    }
    
    .service-card,
    .cta-item {
        padding: 2rem 1.5rem;
    }
    
    .statement-text {
        font-size: 1.2rem;
    }
}
