/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/contact.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
/* Contact Page Specific Styles */

/* Contact Header - Interrogation Room */
.contact-header {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(92, 92, 92, 0.4) 100%);
    padding: 120px 0 60px;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/noir-bar-scene.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: -2;
    filter: blur(2px);
}

.interrogation-room {
    text-align: center;
    position: relative;
    z-index: 2;
}

.spotlight {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 203, 92, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: spotlightFlicker 3s ease-in-out infinite;
}

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

.contact-title {
    font-size: 4rem;
    color: var(--accent-2);
    text-shadow: 0 0 20px var(--accent-2);
    margin-bottom: 1rem;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px var(--accent-2); }
    to { text-shadow: 0 0 30px var(--accent-2), 0 0 40px var(--accent-2); }
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    font-style: italic;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    gap: 4rem;
    align-items: start;
}

/* Form Container */
.form-container {
    background: rgba(92, 92, 92, 0.1);
    border: 1px solid rgba(245, 203, 92, 0.2);
    border-radius: 10px;
    padding: 3rem;
    position: relative;
}

.form-container::before {
    content: 'SECURE TRANSMISSION';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-1);
    color: var(--secondary);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    transform: rotate(3deg);
    font-family: var(--font-alt);
}

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

.form-header h2 {
    color: var(--accent-2);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--accent-2);
}

.form-header p {
    color: var(--muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* Form Styling */
.contact-form {
    font-family: 'Courier New', monospace;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--accent-2);
    font-family: var(--font-alt);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(17, 17, 17, 0.8);
    border: none;
    border-bottom: 2px solid var(--muted);
    color: var(--secondary);
    padding: 12px 0;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-1);
    box-shadow: 0 2px 10px rgba(215, 38, 61, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 248, 225, 0.5);
    font-style: italic;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-2);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-underline,
.form-group select:focus ~ .input-underline,
.form-group textarea:focus ~ .input-underline {
    width: 100%;
}

/* Checkbox Styling */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-alt);
    color: var(--secondary);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: auto;
}

.checkbox-label .checkmark {
    position: relative;
    margin-right: 15px;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid var(--accent-2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--accent-1);
    box-shadow: 0 0 5px rgba(215, 38, 61, 0.3);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--accent-1);
    border-color: var(--accent-1);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--secondary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-1), #ff4757);
    color: var(--secondary);
    border: 2px solid var(--accent-2);
    padding: 15px 30px;
    font-family: var(--font-header);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 38, 61, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Contact Info */
.contact-info {
    background: rgba(92, 92, 92, 0.05);
    border: 1px solid rgba(245, 203, 92, 0.2);
    border-radius: 10px;
    padding: 2rem;
}

.info-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 203, 92, 0.2);
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section h3 {
    color: var(--accent-2);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--accent-2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    margin-top: 0.2rem;
}

.contact-details strong {
    display: block;
    color: var(--secondary);
    font-family: var(--font-alt);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(92, 92, 92, 0.05);
}

.faq-title {
    text-align: center;
    color: var(--accent-2);
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--accent-2);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(92, 92, 92, 0.1);
    border: 1px solid rgba(245, 203, 92, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-1);
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(245, 203, 92, 0.05);
}

.faq-question h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-alt);
    font-weight: 600;
}

.faq-toggle {
    color: var(--accent-2);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(17, 17, 17, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--secondary);
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-1) 0%, #ff4757 100%);
    text-align: center;
    position: relative;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/smoke-overlay.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.emergency-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.emergency-content p {
    color: var(--secondary);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--font-header);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: var(--secondary);
    color: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 100px 0 40px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .spotlight {
        width: 200px;
        height: 200px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
}


/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/form-styles.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/* Form Validation Styles - Noir Theme */

/* Base form field styles */
.form-field {
    transition: all 0.3s ease;
    position: relative;
}

.form-field:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(245, 203, 92, 0.3);
    border-color: var(--accent-2);
}

/* Validation states */
.field-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3) !important;
}

.field-valid:focus {
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.4) !important;
}

.field-invalid {
    border-color: var(--accent-1) !important;
    box-shadow: 0 0 10px rgba(215, 38, 61, 0.3) !important;
    background-color: rgba(215, 38, 61, 0.05) !important;
}

.field-invalid:focus {
    box-shadow: 0 0 15px rgba(215, 38, 61, 0.4) !important;
}

/* Error messages */
.field-error {
    color: var(--accent-1);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-family: var(--font-alt);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.field-error::before {
    content: '⚠';
    font-style: normal;
    font-size: 0.9rem;
}

/* Form messages */
.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-family: var(--font-alt);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.form-message-success::before {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
}

.form-message-error {
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.1) 0%, rgba(215, 38, 61, 0.05) 100%);
    border: 1px solid rgba(215, 38, 61, 0.3);
    color: var(--accent-1);
}

.form-message-error::before {
    content: '✕';
    font-size: 1.2rem;
    font-weight: bold;
}

/* Enhanced form inputs */
.enhanced-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 203, 92, 0.3);
    color: var(--secondary);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-family: var(--font-alt);
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.enhanced-input::placeholder {
    color: var(--muted);
    font-style: italic;
}

.enhanced-input:hover {
    border-color: rgba(245, 203, 92, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.enhanced-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-2);
    box-shadow: 0 0 15px rgba(245, 203, 92, 0.3);
}

/* Enhanced textarea */
.enhanced-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 203, 92, 0.3);
    color: var(--secondary);
    padding: 1rem;
    border-radius: 6px;
    font-family: var(--font-alt);
    font-size: 1rem;
    width: 100%;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s ease;
}

.enhanced-textarea::placeholder {
    color: var(--muted);
    font-style: italic;
}

.enhanced-textarea:hover {
    border-color: rgba(245, 203, 92, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.enhanced-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-2);
    box-shadow: 0 0 15px rgba(245, 203, 92, 0.3);
}

/* Enhanced select */
.enhanced-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 203, 92, 0.3);
    color: var(--secondary);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-family: var(--font-alt);
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enhanced-select:hover {
    border-color: rgba(245, 203, 92, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.enhanced-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-2);
    box-shadow: 0 0 15px rgba(245, 203, 92, 0.3);
}

/* Form groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--secondary);
    font-family: var(--font-alt);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group.required label::after {
    content: ' *';
    color: var(--accent-1);
    font-weight: bold;
}

/* Form buttons */
.form-submit {
    background: linear-gradient(45deg, var(--accent-2), #ffd700);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-header);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.form-submit:hover {
    background: linear-gradient(45deg, #ffd700, var(--accent-2));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 203, 92, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    background: rgba(92, 92, 92, 0.5);
    color: var(--muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading state */
.form-submit.loading {
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Checkbox and radio styles */
.form-checkbox,
.form-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    margin-bottom: 0.8rem;
}

.form-checkbox input,
.form-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-checkbox .checkmark,
.form-radio .checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(245, 203, 92, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-radio .checkmark {
    border-radius: 50%;
}

.form-checkbox input:checked ~ .checkmark,
.form-radio input:checked ~ .checkmark {
    background: var(--accent-2);
    border-color: var(--accent-2);
}

.form-checkbox input:checked ~ .checkmark::after {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 0.8rem;
}

.form-radio input:checked ~ .checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive form styles */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .enhanced-input,
    .enhanced-textarea,
    .enhanced-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.9rem;
    }
    
    .form-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .field-error {
        font-size: 0.75rem;
    }
    
    .form-message {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .enhanced-input,
    .enhanced-textarea,
    .enhanced-select {
        padding: 0.8rem;
    }
    
    .form-submit {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
}

/* Focus indicators for accessibility */
.form-field:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

.form-submit:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .field-valid {
        border-color: #00ff00 !important;
    }
    
    .field-invalid {
        border-color: #ff0000 !important;
    }
    
    .form-message-success {
        background: #004400;
        border-color: #00ff00;
    }
    
    .form-message-error {
        background: #440000;
        border-color: #ff0000;
    }
}


/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/trust-signals.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
/* Trust Signals and Security Features - Noir Theme */

/* Security Badges */
.security-badges {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    border-top: 2px solid var(--accent-2);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 203, 92, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 203, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

.badge-item:hover {
    border-color: var(--accent-2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 203, 92, 0.2);
}

.badge-item:hover::before {
    left: 100%;
}

.badge-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.badge-text {
    flex: 1 1;
}

.badge-text strong {
    display: block;
    color: var(--secondary);
    font-family: var(--font-alt);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.badge-text span {
    color: var(--muted);
    font-size: 0.8rem;
    font-style: italic;
}

/* SSL Indicator */
.ssl-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #28a745;
    font-family: var(--font-alt);
    font-weight: 600;
}

.ssl-icon {
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/smoke-overlay.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-title {
    text-align: center;
    color: var(--accent-2);
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 203, 92, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--accent-2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 203, 92, 0.2);
}

.testimonial-rating {
    color: var(--accent-1);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--secondary);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--muted);
    font-family: var(--font-alt);
    font-size: 0.9rem;
}

.testimonial-author strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 0.3rem;
}

.verified-badge {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Privacy Notice */
.privacy-notice {
    background: rgba(245, 203, 92, 0.1);
    border: 1px solid rgba(245, 203, 92, 0.3);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.privacy-notice p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.privacy-link {
    color: var(--accent-2);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--accent-1);
}

/* Trust Modals */
.trust-modals .modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(45, 45, 45, 0.98) 100%);
    border: 2px solid var(--accent-2);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-content h3 {
    color: var(--accent-2);
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-content h4 {
    color: var(--secondary);
    font-family: var(--font-alt);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.modal-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modal-content li {
    color: var(--secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(245, 203, 92, 0.1);
    font-family: var(--font-alt);
}

.modal-content li:last-child {
    border-bottom: none;
}

.policy-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Product Trust Indicators */
.product-trust-indicators {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 203, 92, 0.2);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--secondary);
    font-family: var(--font-alt);
    font-size: 0.9rem;
}

.trust-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .security-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .badge-item {
        padding: 0.8rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .ssl-indicator {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .security-badges {
        padding: 1rem;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .privacy-notice p {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Animation for trust indicators */
@keyframes trustPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.trust-indicator:hover .trust-icon {
    animation: trustPulse 1s ease-in-out;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .badge-item {
        border-color: #ffffff;
        background: #000000;
    }
    
    .testimonial-card {
        border-color: #ffffff;
        background: #000000;
    }
    
    .modal-content {
        border-color: #ffffff;
        background: #000000;
    }
}


/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/seo-styles.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/* SEO Enhancement Styles - Noir Theme */

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(17, 17, 17, 0.9);
    border-bottom: 1px solid rgba(245, 203, 92, 0.2);
    padding: 0.8rem 0;
    font-size: 0.85rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--font-alt);
    transition: color 0.3s ease;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.breadcrumb-item a:hover {
    color: var(--accent-2);
    background: rgba(245, 203, 92, 0.1);
}

.breadcrumb-item span[aria-current="page"] {
    color: var(--secondary);
    font-family: var(--font-alt);
    font-weight: 600;
    padding: 0.2rem 0.4rem;
}

.breadcrumb-separator {
    color: var(--muted);
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-2);
    color: var(--primary);
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    font-family: var(--font-alt);
    font-weight: 600;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Structured data indicators (for development) */
.schema-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: var(--font-alt);
    z-index: 1000;
    display: none; /* Hidden in production */
}

/* Social sharing buttons */
.social-share {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin: 1rem 0;
}

.social-share-label {
    color: var(--muted);
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 600;
}

.social-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-share-button.facebook {
    background: #1877f2;
    color: white;
}

.social-share-button.twitter {
    background: #1da1f2;
    color: white;
}

.social-share-button.pinterest {
    background: #bd081c;
    color: white;
}

.social-share-button.email {
    background: var(--accent-2);
    color: var(--primary);
}

.social-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Page loading indicator for SEO */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.page-loading.active {
    transform: translateX(0);
}

/* SEO-friendly image containers */
.seo-image-container {
    position: relative;
    overflow: hidden;
}

.seo-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.seo-image-container:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.8rem;
    font-family: var(--font-alt);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-image-container:hover .image-caption {
    opacity: 1;
}

/* Article/content structure for SEO */
.content-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-article h1 {
    color: var(--accent-2);
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.content-article h2 {
    color: var(--secondary);
    font-family: var(--font-alt);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--accent-2);
    padding-bottom: 0.5rem;
}

.content-article h3 {
    color: var(--secondary);
    font-family: var(--font-alt);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem 0;
}

.content-article p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
}

.content-article ul,
.content-article ol {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.content-article li {
    margin-bottom: 0.5rem;
}

/* FAQ schema-friendly structure */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    border: 1px solid rgba(245, 203, 92, 0.2);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    cursor: pointer;
    font-family: var(--font-alt);
    font-weight: 600;
    color: var(--secondary);
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-answer {
    padding: 1rem;
    color: var(--muted);
    line-height: 1.6;
    border-top: 1px solid rgba(245, 203, 92, 0.1);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    color: var(--accent-2);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Responsive SEO elements */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.6rem 0;
        font-size: 0.8rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.3rem;
    }
    
    .social-share {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-share-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .content-article {
        padding: 1rem;
    }
    
    .content-article h1 {
        font-size: 2rem;
    }
    
    .content-article h2 {
        font-size: 1.5rem;
    }
    
    .content-article h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        font-size: 0.75rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item span {
        padding: 0.1rem 0.2rem;
    }
    
    .social-share {
        gap: 0.5rem;
    }
    
    .social-share-button {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Print styles for SEO */
@media print {
    .breadcrumbs,
    .social-share,
    .skip-link {
        display: none;
    }
    
    .content-article {
        max-width: none;
        padding: 0;
    }
    
    .content-article h1,
    .content-article h2,
    .content-article h3 {
        color: #000;
    }
    
    .content-article p,
    .content-article li {
        color: #333;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .breadcrumb-item a {
        border: 1px solid currentColor;
    }
    
    .social-share-button {
        border: 2px solid currentColor;
    }
    
    .faq-item {
        border-color: currentColor;
    }
}


