@import url("common.css");

/* Styles specific to styles.css */

/* Stat Boxes */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 30px;
}

.stat-box {
    flex: 0 0 200px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(10, 25, 47, 0.8) 100%);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Form Styling */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(100, 255, 218, 0.2);
    background-color: rgba(10, 25, 47, 0.5);
    color: var(--text);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

.form-footer {
    margin-top: 20px;
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 250px;
    }
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(17, 34, 64, 0.7) 0%, rgba(10, 25, 47, 0.95) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.premium-card {
    background: linear-gradient(145deg, rgba(26, 54, 93, 0.8) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-top: 3px solid var(--accent);
}

.urgent-card {
    background: linear-gradient(145deg, rgba(150, 20, 20, 0.1) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-top: 3px solid #ff4757;
}

.featured-card {
    background: linear-gradient(145deg, rgba(45, 85, 115, 0.7) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-top: 3px solid var(--accent-blue);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 2;
}

.urgent-badge {
    background: #ff4757;
}

.service-tagline {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.service-benefits {
    margin: 20px 0;
    flex-grow: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.benefit-item i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 3px;
}

.benefit-item span {
    font-size: 15px;
    color: var(--text-secondary);
}

.service-action {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-urgent {
    background-color: #ff4757;
    color: white;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-urgent:hover {
    background-color: #ff6b81;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-action {
        flex-direction: column;
        width: 100%;
    }
    
    .service-action a,
    .service-action button {
        width: 100%;
        text-align: center;
    }
}

/* Enhanced Testimonials Section */
.testimonials-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.metric-box {
    flex: 1 1 200px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 220px;
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 40px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid var(--accent);
}

.testimonial-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.result-item {
    text-align: center;
    padding: 10px;
    background-color: rgba(100, 255, 218, 0.05);
    border-radius: var(--border-radius-sm);
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.result-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--white);
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, 
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--white);
    border: 1px solid rgba(100, 255, 218, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, 
.next-btn:hover {
    background-color: rgba(100, 255, 218, 0.2);
    color: var(--accent);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(100, 255, 218, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

.client-logos,
.certifications-section {
    margin-top: 80px;
    text-align: center;
}

.client-logos h3,
.certifications-section h3 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.client-logos h3::after,
.certifications-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.logo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.client-logo {
    flex: 0 0 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
}

.certification-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.certification-item {
    flex: 0 0 180px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.certification-item:hover {
    transform: translateY(-5px);
    background: rgba(17, 34, 64, 0.7);
    border-color: var(--accent);
}

.certification-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 24px;
}

.certification-text h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.certification-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certification-grid,
    .logo-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-results {
        grid-template-columns: 1fr;
    }
    
    .certification-item {
        flex-basis: 150px;
    }
    
    .client-logo {
        flex-basis: 130px;
    }
}

@media (max-width: 576px) {
    .metric-box {
        flex-basis: 100%;
        max-width: 100%;
    }
    
    .certification-grid,
    .logo-grid {
        justify-content: space-around;
    }
}

/* Enhanced Industry Section */
.industry-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: var(--shadow-md);
}

.industry-image {
    position: relative;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-content:hover .industry-image img {
    transform: scale(1.05);
}

.industry-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 16px;
}

.industry-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.8);
    border-radius: var(--border-radius-md);
    padding: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.industry-text {
    padding: 30px;
}

.industry-header {
    margin-bottom: 20px;
}

.industry-header h3 {
    margin-bottom: 10px;
    font-size: 28px;
    color: var(--white);
}

.industry-subheading {
    color: var(--accent);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
}

.industry-description {
    margin-bottom: 25px;
}

.industry-description p {
    margin-bottom: 20px;
    color: var(--text);
}

.industry-callout {
    background: rgba(100, 255, 218, 0.05);
    border-left: 3px solid var(--accent);
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 20px;
}

.industry-callout i {
    color: var(--accent);
    font-size: 24px;
    margin-top: 5px;
}

.industry-callout p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.industry-features {
    margin-bottom: 30px;
}

.industry-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.industry-features i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 3px;
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.industry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

.tab-btn {
    padding: 12px 20px;
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, 
.tab-btn.active {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 992px) {
    .industry-content {
        grid-template-columns: 1fr;
    }
    
    .industry-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .industry-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .industry-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* Security Assessment Wizard */
.security-assessment-section {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.9) 0%, rgba(10, 25, 47, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.security-assessment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2364ffda' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.wizard-container {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.7) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 40px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.wizard-progress {
    margin-bottom: 40px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent));
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid rgba(100, 255, 218, 0.3);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

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

.step.completed .step-number {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.step.completed .step-number::after {
    content: '✓';
    position: absolute;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-align: center;
}

.step.active .step-label {
    color: var(--accent);
}

.wizard-content {
    position: relative;
    min-height: 400px;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.wizard-step h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.wizard-step p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.wizard-form {
    margin-bottom: 30px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.check-group {
    margin-bottom: 30px;
}

.group-label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    background-color: rgba(10, 25, 47, 0.5);
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.check-item input[type="checkbox"]:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.check-item input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
}

.check-item label {
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-disclaimer i {
    color: var(--accent);
}

/* Results Step */
.result-content {
    text-align: center;
    padding: 30px 0;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 40px;
    color: var(--accent);
}

.result-box {
    background: rgba(17, 34, 64, 0.5);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: left;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.result-header i {
    font-size: 24px;
    color: var(--accent);
}

.result-header h4 {
    margin-bottom: 0;
}

.result-steps {
    padding-left: 0;
}

.result-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
}

.step-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.5;
}

.result-cta {
    margin-top: 30px;
}

.result-cta p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .wizard-container {
        padding: 30px 20px;
    }
    
    .step-indicators {
        display: none;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-actions {
        flex-direction: column;
    }
    
    .wizard-actions button {
        width: 100%;
    }
}



/*
 * Borealis Security - Main Stylesheet
 * Version: 1.0.0
 * Author: Borealis Security Design Team
 */

/* --------------------
   Table of Contents
   --------------------
   1. CSS Variables
   2. Base Styles
   3. Typography
   4. Layout & Grid
   5. Navigation
   6. Header
   7. Footer
   8. Buttons
   9. Forms
   10. Hero Section
   11. Section Styles
   12. Cards & Boxes
   13. Testimonials
   14. Blog
   15. Cookie Consent
   16. Modal
   17. Animations
   18. Utilities
   19. Media Queries
-------------------- */


/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

h1 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
}

h3 {
    font-size: clamp(22px, 3vw, 32px);
}

h4 {
    font-size: clamp(18px, 2vw, 24px);
}

p {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.8;
}

.section-subtitle {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
}

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

/* 5. Navigation */
.main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    font-size: 16px;
    position: relative;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--secondary);
    border-radius: var(--border-radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 100;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: rgba(100, 255, 218, 0.05);
    color: var(--accent);
    padding-left: 25px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

/* 6. Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.site-header.scroll-down {
    transform: translateY(-100%);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.logo span {
    color: var(--white);
}

.logo-img {
    margin-right: 10px;
}

.btn-header-cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-header-cta:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
    color: var(--accent);
    text-decoration: none;
}

/* 7. Footer */
.site-footer {
    background-color: var(--secondary);
    padding-top: 80px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(100, 255, 218, 0.05);
    color: var(--accent);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
}

.footer-menu a:hover,
.footer-menu a.active {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-info i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
}

.contact-info a {
    color: var(--text-secondary);
}

.contact-info a:hover {
    color: var(--accent);
}

.footer-cta {
    margin-top: 20px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badge img {
    height: 40px;
}

/* 10. Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.aurora-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    z-index: 1;
    filter: blur(80px);
    transform-origin: center center;
}

.aurora-1 {
    background: linear-gradient(45deg, var(--accent-blue), transparent, rgba(58, 134, 255, 0.2));
    opacity: 0.4;
    animation: aurora1 25s infinite alternate ease-in-out;
}

.aurora-2 {
    background: linear-gradient(135deg, var(--accent-purple), transparent, rgba(157, 78, 221, 0.3));
    opacity: 0.3;
    animation: aurora2 30s infinite alternate-reverse ease-in-out;
}

.aurora-3 {
    background: linear-gradient(225deg, var(--accent), transparent, rgba(100, 255, 218, 0.2));
    opacity: 0.2;
    animation: aurora3 35s infinite alternate ease-in-out;
}

.aurora-4 {
    background: radial-gradient(circle at 70% 30%, var(--accent), transparent 60%);
    opacity: 0.15;
    animation: aurora4 40s infinite alternate-reverse ease-in-out;
    filter: blur(100px);
}

@keyframes aurora1 {
    0% { transform: translate(-30%, -30%) rotate(0) scale(1); }
    50% { transform: translate(10%, 10%) rotate(180deg) scale(1.2); }
    100% { transform: translate(30%, 30%) rotate(360deg) scale(1); }
}

@keyframes aurora2 {
    0% { transform: translate(30%, -30%) rotate(0) scale(1.2); }
    50% { transform: translate(-10%, 10%) rotate(180deg) scale(0.8); }
    100% { transform: translate(-30%, 30%) rotate(360deg) scale(1.2); }
}

@keyframes aurora3 {
    0% { transform: translate(-20%, 20%) rotate(0) skew(0deg, 0deg); }
    50% { transform: translate(5%, -10%) rotate(180deg) skew(10deg, 5deg); }
    100% { transform: translate(20%, -20%) rotate(360deg) skew(0deg, 0deg); }
}

@keyframes aurora4 {
    0% { transform: translate(0%, 0%) scale(0.8); opacity: 0.1; }
    50% { transform: translate(-5%, 5%) scale(1.2); opacity: 0.2; }
    100% { transform: translate(5%, -5%) scale(0.9); opacity: 0.1; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.hero-title {
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--accent);
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-bullets {
    margin-bottom: 30px;
}

.bullet-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.bullet-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
}

.bullet-text {
    font-size: 16px;
    color: var(--text);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 25, 47, 0.5);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.trust-badge-icon {
    color: var(--accent);
    font-size: 16px;
}

.trust-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* 11. Section Styles */
.page-header {
    padding: 150px 0 80px;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 16px;
}

.breadcrumbs a {
    color: var(--text);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs .separator {
    color: var(--text-secondary);
}

.breadcrumbs .current {
    color: var(--accent);
}

.page-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.services-section {
    position: relative;
}

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

.why-us-section {
    background-color: var(--secondary);
    position: relative;
}

.why-us-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.testimonials-section {
    background-color: var(--secondary);
    position: relative;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.blog-section {
    position: relative;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.cta-section {
    padding: 100px 0;
    position: relative;
}

.cta-container {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(10, 25, 47, 0.8) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2364ffda' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: rgba(10, 25, 47, 0.4);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.guarantee-icon {
    color: var(--success);
    font-size: 30px;
    flex-shrink: 0;
}

.guarantee-content {
    text-align: left;
}

.guarantee-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.guarantee-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Calendly CTA Styling */
.cta-calendly {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 15px 30px var(--shadow-dark);
}

.cta-calendly-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-calendly-text {
    flex: 3;
}

.cta-calendly-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-calendly-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
}

.cta-benefits li i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 4px;
}

.cta-calendly-scheduling {
    flex: 2;
    text-align: center;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.cta-or {
    margin: 15px 0;
    color: var(--text-secondary);
    position: relative;
}

.cta-or::before,
.cta-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-or::before {
    left: 0;
}

.cta-or::after {
    right: 0;
}

/* Responsive styles for Calendly CTA */
@media (max-width: var(--breakpoint-lg)) {
    .cta-calendly-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-calendly-text,
    .cta-calendly-scheduling {
        flex: none;
        width: 100%;
    }
}

.faq-section {
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(100, 255, 218, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
    padding-right: 20px;
}

.faq-toggle {
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.open .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    padding-bottom: 20px;
}

.faq-cta {
    margin-top: 40px;
}

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-method-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-method-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.contact-link {
    font-weight: 500;
    color: var(--accent);
}

.emergency-link {
    color: var(--danger);
}

.social-connect {
    margin-top: 40px;
}

.social-connect h3 {
    margin-bottom: 15px;
}


.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(100, 255, 218, 0.05);
    color: var(--accent);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 16px;
}

.social-icons a:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(10, 25, 47, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.map-section {
    margin: 80px 0;
}

.map-container {
    height: 450px;
    position: relative;
}

.map-container iframe {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* 12. Cards & Boxes */
.service-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(10, 25, 47, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 14px;
}

.service-features i {
    color: var(--accent);
    font-size: 14px;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 16px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 0;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--border-radius-lg);
    width: 100%;
}

.shadow-image {
    box-shadow: var(--shadow-lg);
}

.image-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent));
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    color: var(--primary);
    z-index: 1;
}

.accent-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.accent-text {
    font-size: 14px;
    font-weight: 500;
}

.case-study-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(10, 25, 47, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.case-study-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-study-industry {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

.case-study-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.case-study-description {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
}

.case-study-results {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.result-item {
    flex: 1;
}

.result-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.result-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.case-study-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 16px;
}

.case-study-link i {
    transition: transform 0.3s ease;
}

.case-study-link:hover i {
    transform: translateX(5px);
}

.form-container {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(10, 25, 47, 0.8) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    max-width: 450px;
    z-index: 10;
}

.form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent), var(--accent-purple));
    z-index: 1;
}

.form-banner {
    padding: 20px 30px;
    background-color: rgba(100, 255, 218, 0.05);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary);
    font-size: 20px;
}

.form-banner-text {
    flex-grow: 1;
}

.form-banner-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-banner-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.limited-offer {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--danger) 0%, #ff8a8a 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 83, 112, 0.3);
    animation: pulse 2s infinite;
}

.form-content {
    padding: 30px;
    position: relative;
}

.form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.form-testimonials {
    background-color: rgba(10, 25, 47, 0.4);
    padding: 20px 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.mini-testimonial {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.mini-testimonial-content {
    flex-grow: 1;
}

.mini-testimonial-text {
    font-size: 13px;
    margin-bottom: 5px;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
}

.mini-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.mini-testimonial-stars {
    display: flex;
    color: #ffd700;
    font-size: 12px;
}

/* 13. Testimonials */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 2;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(10, 25, 47, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.logo-item img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* 14. Blog */
.blog-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(10, 25, 47, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent) 100%);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--white);
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--accent);
    text-decoration: none;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 16px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

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

/* 15. Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.9) 0%, rgba(10, 25, 47, 0.9) 100%);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent) 100%);
    color: var(--primary);
}

.cookie-btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.cookie-btn-settings:hover {
    background: rgba(100, 255, 218, 0.1);
}

/* 16. Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 12, 27, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cookie-modal-content {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.95) 0%, rgba(10, 25, 47, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--accent);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-modal-body p {
    margin-bottom: 30px;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.cookie-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cookie-option-header h4 {
    margin-bottom: 0;
}

.cookie-switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 34px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-switch label:before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-switch input:checked + label {
    background-color: rgba(100, 255, 218, 0.5);
}

.cookie-switch input:checked + label:before {
    transform: translateX(26px);
    background-color: var(--accent);
}

.cookie-switch input:disabled + label {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.cookie-btn-save {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.cookie-btn-save:hover {
    background: rgba(100, 255, 218, 0.1);
}

.cookie-btn-accept-all {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent) 100%);
    color: var(--primary);
}

.cookie-btn-accept-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

/* 17. Animations */
.success-spots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.success-spot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.form-success {
    text-align: center;
    padding: 30px 20px;
}

.form-success .success-icon {
    font-size: 50px;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-secondary);
}

/* 18. Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-5px);
}

/* 19. Media Queries */
@media screen and (max-width: 1200px) {
    :root {
        --section-padding: 80px;
        --container-padding: 30px;
    }

    .hero-grid {
        gap: 40px;
    }

    .why-us-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --section-padding: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .section-subtitle,
    .bullet-point {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group,
    .trust-badges {
        justify-content: center;
    }

    .form-container {
        max-width: 100%;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        order: -1;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .site-header .container {
        padding: 0 20px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--secondary);
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        max-height: 500px;
        padding-top: 10px;
    }

    .dropdown-menu a {
        padding: 10px 0;
    }

    .dropdown-menu a:hover {
        background: transparent;
        padding-left: 5px;
    }

    .has-dropdown > a:after {
        content: '+';
        margin-left: 5px;
    }

    .has-dropdown.dropdown-open > a:after {
        content: '-';
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media screen and (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .mini-testimonial {
        flex-direction: column;
        text-align: center;
    }

    .mini-testimonial-author {
        justify-content: center;
    }

    .cta-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin-bottom: 10px;
    }

    .count-box {
        flex-basis: 100%;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
/* Extracted inline styles from vciso-services-alaska.html */
.vciso-services-alaska-extracted-1 {
  text-align: center; padding: 40px 20px;
}

.vciso-services-alaska-extracted-2 {
  font-size: 50px; margin-bottom: 20px; color: var(--accent);
}

.vciso-services-alaska-extracted-3 {
  font-size: 24px; margin-bottom: 15px;
}

.vciso-services-alaska-extracted-4 {
  color: var(--text-secondary); margin-bottom: 20px;
}

.vciso-services-alaska-extracted-5 {
  color: var(--text); font-weight: 600; margin-bottom: 5px;
}

.vciso-services-alaska-extracted-6 {
  color: var(--text-secondary); margin-bottom: 20px; font-size: 14px;
}

.vciso-services-alaska-extracted-7 {
  font-size: 14px; color: var(--success); font-weight: 600;
}


/* Extracted inline styles from index.html */
.index-extracted-1 {
  background-image: url('./images/testimonials/jennifer-smith.jpg')
}


/* Extracted inline styles from contact.html */
.contact-extracted-1 {
  border:0;
}


/* === Utility Bar (Return to Base) - Global === */
.utility-bar {
    position: absolute;
    top: 90px; /* Below navbar */
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 5%;
    z-index: 800;
    pointer-events: none; /* Let clicks pass through container */
}

.utility-bar a {
    pointer-events: auto; /* Re-enable clicks on button */
}

.back-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-mono); /* Ensure this font var exists or use monospace fallback */
    font-size: 0.85rem;
    padding: 8px 16px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 4px;
    background: rgba(2, 12, 27, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-link-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--accent);
    transform: translateX(-3px);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
    color: var(--accent);
}

/* Mobile adjustment for Utility Bar */
@media (max-width: 768px) {
    .utility-bar {
        justify-content: center;
    }
}
