/* Add CSS variables at the top */
:root {
    --primary-color: #0056b3;
    --secondary-color: #2c3e50;
    --dark-bg: #1a1a1a;
    --darker-bg: #121212;
    --text-light: #e0e0e0;
    --border-color: #333;
    --pattern-color1: #1a1a1a;
    --pattern-color2: #141414;
    --font-headers: "Futura PT", futura, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Public Sans', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 70px;
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    margin-left: 0;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hero section */
.hero {
    min-height: 60vh;
    padding: 120px 5% 60px;
    background-color: var(--darker-bg);
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    ), url('alertworks-header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Remove or modify the grid animation since we're using an image */
.hero::before {
    display: none; /* Remove the grid animation */
}

/* Update the overlay to be slightly darker for better text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

/* Update hero text styles */
.hero h1 {
    font-family: var(--font-headers);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-light);
    max-width: 800px;
}

.hero p {
    font-family: var(--font-body);
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    max-width: 600px;
}

/* Add animations */
@keyframes grid-animation {
    0% {
        transform: perspective(300px) rotateX(45deg) translateY(0);
    }
    100% {
        transform: perspective(300px) rotateX(45deg) translateY(3em);
    }
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: none;
    }
}

/* Update hero buttons for better contrast */
.hero-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.cta-button.primary {
    background-color: var(--primary-color);
    border: none;
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
}

.cta-button.primary:hover {
    background-color: #0066cc;
    box-shadow: 0 0 30px rgba(0, 86, 179, 0.5);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #357abd;
}

/* Sections */
section {
    padding: 5rem 10%;
    background-color: #121212;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.service-card:hover i {
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: #999;
    line-height: 1.6;
}

/* Coverage Areas */
.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.coverage-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.coverage-list {
    padding: 2rem;
    background-color: var(--dark-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.coverage-list h3 {
    font-family: var(--font-headers);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.coverage-areas ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
}

.coverage-areas li {
    background-color: var(--darker-bg);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.coverage-areas li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coverage-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-image {
        min-height: 300px;
    }

    .coverage-areas ul {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles Update */
footer {
    padding: 3rem 0 1rem;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    margin: 0;
}

/* Update footer content styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 5%;
    width: 100%;
}

/* Remove max-width from footer content */
.footer-content,
.footer-bottom {
    max-width: none;
    width: 100%;
}

.footer-info h3 {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-info p {
    color: #999;
    line-height: 1.6;
}

.footer-contact h4 {
    font-family: var(--font-headers);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-contact p {
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding: 2rem 5% 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: #999;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 5% 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    section {
        padding: 3rem 5%;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .logo {
        height: 40px;
    }
    
    nav {
        height: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
} 

/* Update trust banner styles */
#trust-banner {
    background-color: var(--dark-bg);
    padding: 2rem 5%;
    margin-top: -1px;
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.trust-icon {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 1.8rem;
    color: white;
}

.trust-content {
    flex-grow: 1;
}

.trust-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Update responsive styles */
@media (max-width: 768px) {
    #trust-banner {
        padding: 2rem 5%;
    }

    .trust-items {
        gap: 1.5rem;
    }

    .trust-item {
        padding: 1.25rem;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
    }

    .trust-icon i {
        font-size: 1.5rem;
    }
} 

/* System Builder Styles */
#system-builder {
    padding-top: 4rem;
    background-color: var(--darker-bg);
}

.configurator-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--dark-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.configurator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.configurator-header h2 {
    margin-bottom: 0.5rem;
}

.configurator-header p {
    color: #999;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--darker-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.step.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Step Content */
.step-content {
    display: none;
    margin-bottom: 2rem;
}

.step-content.active {
    display: block;
}

.step-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-card {
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.option-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-card span {
    display: block;
    color: var(--text-light);
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.checkbox-group {
    background-color: var(--darker-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.checkbox-group h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.checkbox-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #999;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.step-navigation button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.prev-step {
    background-color: var(--darker-bg);
    color: var(--text-light);
}

.next-step, .submit-form {
    background-color: var(--primary-color);
    color: white;
}

.prev-step:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-indicators {
        gap: 1rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
} 

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 2rem;
    color: #007bff;
    min-width: 50px;
    text-align: center;
}

.benefit-text h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.benefit-text p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
} 

/* Blog Post Layout - Dark Theme */
.blog-post {
    margin: 0 auto;
    max-width: 800px;
    padding: 0 1.5rem;
}

.post-header {
    margin-bottom: 0;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-headers);
}

.post-meta {
    color: #999;
    font-size: 0.9rem;
}

.post-meta time {
    margin-right: 1rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 2.5rem 0 1rem;
    font-family: var(--font-headers);
}

.post-content p {
    margin-bottom: 1.5rem;
    color: #999;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #999;
}

.post-content li {
    margin-bottom: 1rem;
}

.post-content .cta-section {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid var(--border-color);
}

.post-content .cta-section h2 {
    margin-top: 0;
}

.post-content .cta-button {
    margin: 1.5rem 0;
    display: inline-block;
    background-color: var(--primary-color);
}

.post-content .cta-button:hover {
    background-color: #0066cc;
}

.post-content .cta-subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

/* Update strong tags in blog content */
.post-content strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-post {
        padding: 0 1rem;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content .cta-section {
        padding: 1.5rem;
    }
}

/* Active state for nav links */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 500;
} 

/* Blog Hero Modifications */
.blog-post .hero {
    min-height: 60vh;
    padding: 120px 5% 60px;
    background-color: var(--darker-bg);
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    ), url('alertworks-header.jpg');
    background-size: cover;
    background-position: center;
}

.blog-post .hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-post .hero .post-meta {
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 1rem;
}

.blog-post .hero h1 {
    font-size: 3rem;
    max-width: 100%;
}

/* Update blog post margin since we're using hero */
.blog-post {
    margin: 4rem auto;
}

@media (max-width: 768px) {
    .blog-post .hero h1 {
        font-size: 2rem;
    }
} 

/* Blog Listing Styles */
.blog-listing {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.blog-card-inner {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.category {
    color: var(--primary-color);
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: var(--font-headers);
}

.blog-card p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Featured Post */
.blog-card.featured {
    grid-column: 1 / -1;
}

.blog-card.featured .blog-card-image {
    height: 400px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-listing {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card.featured .blog-card-image {
        height: 300px;
    }
} 

/* Post Navigation */
.post-navigation {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-blog i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.back-to-blog:hover {
    color: #0066cc;
}

.back-to-blog:hover i {
    transform: translateX(-5px);
} 

/* Quote Form Styles */
.quote-page {
    padding: 4rem 0;
    background-color: var(--darker-bg);
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--dark-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.quote-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--darker-bg);
    color: var(--text-light);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}

.address-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0066cc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }
} 