/* 
 * Evidence Wipe - Consolidated Stylesheet
 * Version: 1.0
 * Last Updated: May 5, 2025
 */

/* ===== Variables ===== */
:root {
    --primary-color: #cc0000;
    --secondary-color: #363636;
    --background-color: #ebebeb;
    --text-color: #2c2c2c;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Main Layout ===== */
.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-area {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 0px solid #ddd;
}

.nav-content {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
}

.nav-tab-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    padding: 10px 20px;
    position: absolute;
    left: 80px;
    top: -10px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon i {
    color: white;
    font-size: 18px;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: flex-end;
    height: 100%;
}

.nav-item {
    height: 40px;
    margin-left: 2px;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 25px;
    height: 40px;
    display: flex;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-link.active {
    background-color: var(--primary-color);
    color: white;
    border-bottom: 1px solid var(--primary-color);
}

/* Home Page Tab Styles */
.nav-link.active-home {
    background-color: var(--secondary-color);
    color: white;
    border-bottom: 1px solid var(--secondary-color);
}

.nav-link.active-features {
    background-color: var(--primary-color);
    color: white;
    border-bottom: 1px solid var(--primary-color);
}

.nav-link.active-how-it-works {
    background-color: var(--white);
    color: var(--secondary-color);
    border-bottom: 1px solid var(--white);
}

.nav-link.active-download {
    background-color: var(--secondary-color);
    color: white;
    border-bottom: 1px solid var(--secondary-color);
    top: 2px;
}

/* ===== Header/Hero Sections ===== */
.header-section, .hero {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0;
}

.hero {
    padding: 80px 0;
}

.header-content, .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.header-content h1, .hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-text h1 {
    font-size: 48px;
}

.hero-highlight {
    color: var(--primary-color);
}

.header-description, .hero-text p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 600px;
}

.hero-text p {
    margin-bottom: 32px;
}

/* ===== Buttons ===== */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-primary:hover {
    background-color: #b30000;
    transform: translateY(-1px);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.download-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: #b30000;
}

/* ===== Hero Visual ===== */
.hero-visual {
    position: relative;
    height: 400px;
}

.software-screenshot {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25);
    background: white;
    padding: 2px;
    position: relative;
}

.screenshot-titlebar {
    height: 30px;
    background: #f0f0f0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-control.close {
    background: #ff5f56;
}

.window-control.minimize {
    background: #ffbd2e;
}

.window-control.maximize {
    background: #27c93f;
}

.screenshot-content {
    height: calc(100% - 30px);
    background: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.feature-description {
    color: #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
}

.step-screenshot-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

/* ===== Download Section ===== */
.download-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.download-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.download-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.download-icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.download-platform {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.download-version {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 15px;
}

/* ===== Sidebar ===== */
.sidebar {
    position: relative;
    top: 0;
    height: fit-content;
}

.sidebar-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--secondary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.sidebar-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.contact-info strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Feature List (Sidebar) */
.feature-list-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    margin-bottom: 8px;
}

.feature-list-icon {
    width: 35px;
    margin-right: 15px;
    text-align: center;
}

.feature-list-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-list-content {
    flex: 1;
}

.feature-list-text {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-list-line1 {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.feature-list-line2 {
    font-size: 14px;
    color: #6c757d;
}

/* ===== Content Typography ===== */
.last-updated {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 30px;
}

.notice-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 30px;
}

.notice-box p {
    margin-bottom: 0;
}

/* Content Sections (EULA, Privacy Policy, etc.) */
.eula-content h2,
.policy-content h2,
.terms-content h2,
.refund-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.eula-content h2:first-child,
.policy-content h2:first-child,
.terms-content h2:first-child,
.refund-content h2:first-child {
    margin-top: 0;
}

.eula-content h3,
.policy-content h3,
.terms-content h3,
.refund-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.eula-content h4,
.policy-content h4,
.terms-content h4,
.refund-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.eula-content p,
.policy-content p,
.terms-content p,
.refund-content p {
    margin-bottom: 20px;
    color: #4a5568;
}

.eula-content ul,
.policy-content ul,
.terms-content ul,
.refund-content ul,
.eula-content ol,
.policy-content ol,
.terms-content ol,
.refund-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.eula-content li,
.policy-content li,
.terms-content li,
.refund-content li {
    margin-bottom: 10px;
    color: #4a5568;
}

.eula-content strong,
.policy-content strong,
.terms-content strong,
.refund-content strong {
    color: var(--secondary-color);
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Layout */
.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Branding Section */
.footer-brand {
    grid-column: span 1;
}

.footer-brand-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.footer-brand-highlight {
    color: var(--primary-color);
}

.footer-description {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0;
}

/* Links Sections */
.footer-links-section {
    grid-column: span 1;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #9ca3af;
    font-size: 15px;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Footer Icons */
.footer-icon {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Copyright Section */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

/* Responsive Styles for Footer */
@media (max-width: 1024px) {
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 10px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-content {
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer .container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .header-content h1, 
    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Documentation-specific styles */
.doc-navigation {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.doc-nav-tabs {
    display: flex;
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.doc-nav-tab {
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.doc-nav-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.doc-nav-tab:hover:not(.active) {
    background-color: #e9ecef;
}

.doc-section {
    margin-bottom: 50px;
    display: none;
}

.doc-section.active {
    display: block;
}

.doc-section:target {
    display: block;
}

.doc-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.doc-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.doc-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.doc-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    overflow: hidden;
}

.doc-card-header {
    background-color: var(--light-gray);
    padding: 15px 20px;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 1px solid #e9ecef;
}

.doc-card-body {
    padding: 20px;
}

.doc-card-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.doc-step {
    display: flex;
    margin-bottom: 25px;
}

.doc-step-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    margin-top: 5px;
}

.doc-step-content {
    flex: 1;
}

.doc-step-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.doc-step-description {
    color: #4a5568;
    margin-bottom: 10px;
}

.doc-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 15px 0;
}

.doc-alert {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    color: #856404;
}

.doc-tip {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px;
    margin-bottom: 20px;
    color: #2e7d32;
}

.doc-note {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin-bottom: 20px;
    color: #0d47a1;
}

.doc-warning {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    padding: 15px;
    margin-bottom: 20px;
    color: #c62828;
}

.doc-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin-bottom: 20px;
}

.doc-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.doc-video-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.doc-table th, 
.doc-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.doc-table th {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    font-weight: 600;
}

.doc-table tr:last-child td {
    border-bottom: none;
}

/* FAQ accordions */
.faq-accordion {
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-accordion-header {
    padding: 16px 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-accordion-header:hover {
    background-color: #e9ecef;
}

.faq-accordion-title {
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-accordion-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion.active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion.active .faq-accordion-content {
    padding: 20px;
    max-height: 1000px; /* Adjust as needed */
}

/* Search bar */
.doc-search {
    margin-bottom: 30px;
}

.doc-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.doc-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .doc-nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .doc-step {
        flex-direction: column;
    }
    
    .doc-step-number {
        margin-bottom: 10px;
    }
}
/* Contact-specific styles */
.contact-form-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23363636' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-button:hover {
    background-color: #b30000;
    transform: translateY(-2px);
}

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

.contact-info-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-info-text {
    color: #6c757d;
    margin-bottom: 5px;
}

.contact-info-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map i {
    font-size: 48px;
    color: var(--primary-color);
}

.department-section {
    display: none;
}

.department-section.active {
    display: block;
}

.status-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.status-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-required {
    color: var(--primary-color);
    margin-left: 3px;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}
/* Purchase-specific styles */
.purchase-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.purchase-header {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.purchase-description {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.purchase-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.purchase-option {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.purchase-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.purchase-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(204, 0, 0, 0.05);
}

.option-header {
    text-align: center;
    margin-bottom: 20px;
}

.option-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.option-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.option-price-note {
    font-size: 14px;
    color: #6c757d;
}

.option-features {
    margin-bottom: 25px;
}

.option-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.option-feature i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.option-select {
    text-align: center;
}

.purchase-summary {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-label {
    font-weight: 500;
    color: var(--secondary-color);
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 20px;
    font-weight: 700;
}

.summary-total-label {
    color: var(--secondary-color);
}

.summary-total-value {
    color: var(--primary-color);
}

.purchase-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23363636' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.payment-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.payment-button:hover {
    background-color: #b30000;
    transform: translateY(-2px);
}

.payment-button:active {
    transform: translateY(0);
}

.bulk-discount-notice {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #2e7d32;
    border-radius: 0 5px 5px 0;
}

.bulk-discount-notice h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #6c757d;
    font-size: 14px;
    gap: 8px;
}

.secure-badge i {
    color: #28a745;
}

.order-success {
    background-color: #d4edda;
    color: #155724;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    display: none;
}

.order-success.active {
    display: block;
}

.order-error {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    display: none;
}

.order-error.active {
    display: block;
}

@media (max-width: 768px) {
    .purchase-container {
        padding: 25px;
    }
    
    .purchase-option {
        min-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: 100%;
    }
}
/* ===== NEW FOOTER STYLES ===== */
/* Add these styles to the bottom of your styles.css file */

.footer {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-highlight {
    color: var(--primary-color);
}

.footer-subtitle {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #9ca3af;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-icon {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: #374151;
    margin-bottom: 25px;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
}

.footer-copyright p {
    margin-bottom: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }
    
    .footer-col {
        flex: 100%;
        margin-bottom: 30px;
    }
}