/* JV Mitigation & Restoration - Style Sheet */
/* Colors: Red (phoenix), Black, Blue (banner) */

:root {
    --primary-red: #D32F2F;
    --dark-red: #B71C1C;
    --accent-blue: #1976D2;
    --dark-blue: #0D47A1;
    --black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --orange-accent: #FF5722;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, var(--dark-red), var(--primary-red));
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-size: 14px;
}

.emergency-banner a {
    color: var(--white);
    text-decoration: underline;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Header & Navigation */
header {
    background: var(--black);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phoenix {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--dark-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: var(--light-gray);
    text-align: center;
}

.services-overview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--black);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
}

.service-link:hover {
    color: var(--dark-blue);
}

/* Process Section */
.process {
    padding: 80px 20px;
    text-align: center;
}

.process h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--black);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

/* Why Choose Us */
.why-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    color: var(--white);
    text-align: center;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.features {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature {
    padding: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.feature p {
    color: #ccc;
}

/* Emergency CTA */
.emergency-cta {
    padding: 80px 20px;
    background: var(--primary-red);
    text-align: center;
    color: var(--white);
}

.emergency-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.emergency-cta p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-large {
    background: var(--white);
    color: var(--primary-red);
    padding: 20px 50px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-large:hover {
    background: var(--light-gray);
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.footer-section p, .footer-section li {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
    }
}