/* ----------------------------------------------------
   COESC DIVISION SPECIFIC STYLE OVERRIDES
   ---------------------------------------------------- */
@import url("../css/main.css?v=1.0.8");

:root {
    /* Blue Theme Accents */
    --accent-color: #2563EB;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --accent-glow-strong: rgba(37, 99, 235, 0.3);
    --accent-hover: #1D4ED8;
    --accent-bg-soft: rgba(37, 99, 235, 0.08);
}

/* Base custom modifications */
.accent-text {
    color: var(--accent-color);
}

.highlight-italic {
    color: var(--accent-color);
    font-style: italic;
}

/* Custom Navigation highlights */
.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

.theme-switch-pill {
    background-color: var(--accent-color) !important;
}

/* Hero Section */
.coesc-hero {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at 10% 20%, var(--accent-glow) 0%, transparent 40%);
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.coesc-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 992px) {
    .coesc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--accent-bg-soft);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

@media (max-width: 992px) {
    .hero-desc {
        margin: 0 auto 36px;
    }
}

/* 3D Visual Section */
.canvas-card-3d {
    background: var(--bg-light);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    height: 480px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

body[data-theme="dark"] .canvas-card-3d {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.canvas-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Services Grid */
.serv-section {
    padding: 100px 0;
}

.serv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .serv-grid {
        grid-template-columns: 1fr;
    }
}

.serv-card {
    background: var(--bg-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.serv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    opacity: 0;
    transition: var(--transition-quick);
}

.serv-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.serv-card:hover::before {
    opacity: 1;
}

.serv-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    background: var(--accent-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
}

.serv-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.serv-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Compliance Wizard Section */
.wizard-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.wizard-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .wizard-grid {
        grid-template-columns: 1fr;
    }
}

.wizard-card {
    background: var(--bg-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-progress {
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    margin-bottom: 32px;
    overflow: hidden;
    position: relative;
}

.wizard-progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 33%;
    transition: width 0.4s ease;
}

.wizard-header {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wizard-option {
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    padding: 18px 24px;
    cursor: pointer;
    transition: var(--transition-quick);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.wizard-option:hover {
    border-color: var(--accent-color);
    background: var(--accent-bg-soft);
}

.wizard-option.selected {
    border-color: var(--accent-color);
    background: var(--accent-bg-soft);
    color: var(--accent-color);
}

.wizard-option-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.wizard-option.selected .wizard-option-radio {
    border-color: var(--accent-color);
}

.wizard-option.selected .wizard-option-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

/* Compliance Checklist */
.checklist-card {
    background: var(--bg-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.checklist-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-icon {
    margin-top: 2px;
    color: var(--accent-color);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.checklist-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.checklist-info p {
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.checklist-time {
    font-family: var(--font-mono);
    font-size: 11px;
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
}

.btn-outline-accent {
    background: transparent;
    border: 1.5px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-quick);
}

.btn-outline-accent:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.btn-trigger-modal {
    transition: var(--transition-quick);
}
.btn-trigger-modal:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Call to Action banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    box-shadow: 0 20px 50px var(--accent-glow-strong);
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0.9;
}

.cta-banner .btn {
    background: #ffffff !important;
    color: var(--accent-color) !important;
    border: none !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
}

.cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
