/* ===================================
   Crosspoint Solar - Main Stylesheet
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --solar-yellow: #FFC107;
    --energy-blue: #007BFF;
    --clean-white: #FFFFFF;
    --neutral-gray: #F4F4F4;
    --dark-gray: #333333;
    --light-gray: #E0E0E0;
    --success-green: #28A745;
    --danger-red: #DC3545;
    --warning-orange: #FF9800;
    --purple: #9C27B0;
    
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --border-radius: 8px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--clean-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    background: var(--clean-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo i {
    font-size: 28px;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--dark-gray);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--solar-yellow);
    border-bottom-color: var(--solar-yellow);
}

/* Dealer Login Button in Navigation */
.nav-menu a.btn-primary {
    padding: 10px 24px;
    border-radius: var(--border-radius);
    border-bottom: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: var(--solar-yellow);
    color: var(--dark-gray);
    border-color: var(--solar-yellow);
}

.btn-primary:hover {
    background: #FFD54F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--energy-blue);
    color: var(--clean-white);
    border-color: var(--energy-blue);
}

.btn-secondary:hover {
    background: #0056b3;
}

.btn-outline {
    background: transparent;
    color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-outline:hover {
    background: var(--dark-gray);
    color: var(--clean-white);
}

.btn-danger {
    background: var(--danger-red);
    color: var(--clean-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--energy-blue), var(--solar-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clean-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--neutral-gray);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

/* === GRID SYSTEM === */
.grid {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* === CARDS === */
.feature-card,
.service-card,
.team-card,
.cert-card {
    background: var(--clean-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover,
.service-card:hover,
.team-card:hover,
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon,
.service-icon,
.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--dark-gray);
}

.feature-card h3,
.service-card h3,
.team-card h3,
.cert-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--energy-blue);
    font-weight: 600;
    margin-top: 15px;
}

.card-link:hover {
    color: var(--solar-yellow);
}

/* === ICON FEATURES === */
.icon-feature {
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: var(--energy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--clean-white);
}

/* === TESTIMONIALS === */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 350px;
    background: var(--clean-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--solar-yellow);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

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

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--solar-yellow);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--energy-blue);
    color: var(--clean-white);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--energy-blue), #0056b3);
    color: var(--clean-white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === FOOTER === */
.footer {
    background: var(--dark-gray);
    color: var(--clean-white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--solar-yellow);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--solar-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

.social-links a:hover {
    background: var(--energy-blue);
    color: var(--clean-white);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, var(--energy-blue), var(--solar-yellow));
    color: var(--clean-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* === FORMS === */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--solar-yellow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* === ALERTS === */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* === UTILITY CLASSES === */
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* === RESPONSIVE === */
/* === LOGIN PAGE === */
.login-page {
    background: linear-gradient(135deg, var(--energy-blue), var(--solar-yellow));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background: var(--clean-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

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

.login-logo {
    width: 80px;
    height: 80px;
    background: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--dark-gray);
}

.login-header h1 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.login-header h2 {
    font-size: 20px;
    color: var(--energy-blue);
    margin-bottom: 10px;
}

.login-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: var(--energy-blue);
    font-size: 14px;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--energy-blue);
    margin-top: 15px;
}

.demo-credentials {
    background: var(--neutral-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    font-size: 14px;
}

.demo-credentials h4 {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

/* === DASHBOARD === */
.dashboard-page {
    background: var(--neutral-gray);
    min-height: 100vh;
}

.dashboard-header {
    background: var(--clean-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    font-size: 32px;
    color: var(--solar-yellow);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.user-role {
    font-size: 14px;
    color: #888;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--clean-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    min-width: 200px;
    display: none;
    margin-top: 10px;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:hover {
    background: var(--neutral-gray);
}

.welcome-section {
    background: linear-gradient(135deg, var(--energy-blue), var(--solar-yellow));
    color: var(--clean-white);
    padding: 40px 0;
}

.welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.progress-label {
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -30px;
}

.stat-card {
    background: var(--clean-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--clean-white);
}

.stat-icon.bg-blue { background: var(--energy-blue); }
.stat-icon.bg-green { background: var(--success-green); }
.stat-icon.bg-yellow { background: var(--solar-yellow); color: var(--dark-gray); }
.stat-icon.bg-purple { background: var(--purple); }
.stat-icon.bg-red { background: var(--danger-red); }

.stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info p {
    color: #666;
    font-size: 14px;
}

.current-module-card {
    background: var(--clean-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--solar-yellow);
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.module-meta {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    color: #666;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module-item {
    background: var(--clean-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: center;
}

.module-item.locked {
    opacity: 0.6;
}

.module-item.completed {
    border-left: 4px solid var(--success-green);
}

.module-number {
    width: 50px;
    height: 50px;
    background: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.module-content {
    flex: 1;
}

.module-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.module-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #D4EDDA;
    color: #155724;
}

.badge-primary {
    background: #CCE5FF;
    color: #004085;
}

.badge-secondary {
    background: var(--light-gray);
    color: #666;
}

/* === ADMIN PANEL === */
.admin-page {
    display: flex;
    min-height: 100vh;
    background: var(--neutral-gray);
}

.admin-sidebar {
    width: 260px;
    background: var(--dark-gray);
    color: var(--clean-white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 25px 20px;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.sidebar-header i {
    color: var(--solar-yellow);
    font-size: 28px;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: var(--clean-white);
    transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255,193,7,0.1);
    border-left: 4px solid var(--solar-yellow);
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    padding: 20px;
}

.admin-header {
    background: var(--clean-white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.admin-card {
    background: var(--clean-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 25px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.data-table th {
    background: var(--neutral-gray);
    font-weight: 600;
    color: var(--dark-gray);
}

.data-table tr:hover {
    background: var(--neutral-gray);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.action-btn {
    padding: 20px;
    background: var(--neutral-gray);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--solar-yellow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.action-btn i {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: var(--clean-white);
    max-width: 600px;
    margin: 50px auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-large {
    max-width: 900px;
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
}

.close {
    font-size: 32px;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: var(--danger-red);
}

.modal-content form {
    padding: 25px;
}

.progress-bar-small {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--success-green);
    transition: width 0.3s ease;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* === MODULE PAGE === */
.module-page {
    background: var(--neutral-gray);
    min-height: 100vh;
}

.module-header {
    background: var(--clean-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.back-btn,
.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--neutral-gray);
    border-radius: var(--border-radius);
    color: var(--dark-gray);
    font-weight: 600;
}

.back-btn:hover,
.logout-btn:hover {
    background: var(--solar-yellow);
}

.module-title h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.module-container {
    padding: 40px 0;
}

.video-section,
.notes-section,
.quiz-section {
    background: var(--clean-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.video-section h2,
.notes-section h2,
.quiz-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.notes-content {
    line-height: 1.8;
    color: #555;
    white-space: pre-line;
}

.quiz-header {
    margin-bottom: 30px;
}

.quiz-header p {
    color: #666;
    margin-top: 10px;
}

.quiz-attempts {
    background: var(--neutral-gray);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    font-size: 14px;
}

.quiz-question {
    background: var(--neutral-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.quiz-question.unanswered {
    border: 2px solid var(--danger-red);
}

.quiz-question h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--energy-blue);
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--clean-white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.quiz-option:hover {
    border-color: var(--solar-yellow);
    background: #FFFEF0;
}

.quiz-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.quiz-option span {
    flex: 1;
    font-weight: 500;
}

.quiz-submit {
    text-align: center;
    margin-top: 30px;
}

.quiz-result {
    background: var(--clean-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.quiz-result.success {
    border-top: 5px solid var(--success-green);
}

.quiz-result.failed {
    border-top: 5px solid var(--danger-red);
}

.result-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.quiz-result.success .result-icon {
    color: var(--success-green);
}

.quiz-result.failed .result-icon {
    color: var(--danger-red);
}

.quiz-result h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.result-score {
    font-size: 24px;
    margin: 20px 0;
}

.result-score strong {
    color: var(--solar-yellow);
    font-size: 32px;
}

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

/* === ABOUT PAGE SPECIFIC === */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.content-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--energy-blue);
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.value-list i {
    color: var(--success-green);
    font-size: 20px;
    margin-top: 3px;
}

.image-placeholder {
    background: var(--neutral-gray);
    border-radius: var(--border-radius);
    padding: 60px;
    text-align: center;
    color: #999;
}

.image-placeholder.large {
    padding: 100px;
}

.image-placeholder i {
    display: block;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--solar-yellow);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-marker {
    position: absolute;
    right: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--solar-yellow);
    border-radius: 50%;
    border: 5px solid var(--clean-white);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -15px;
    right: auto;
}

.timeline-content {
    background: var(--clean-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--energy-blue);
    margin-bottom: 10px;
}

.team-image {
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--solar-yellow);
    box-shadow: var(--shadow-md);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    max-height: 500px;
}

.team-role {
    color: var(--energy-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    color: #666;
    font-size: 14px;
}

.stats-section {
    background: linear-gradient(135deg, var(--energy-blue), var(--solar-yellow));
    color: var(--clean-white);
    padding: 60px 0;
}

.stats-section .stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    padding: 30px;
}

.stats-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-section .stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* === SERVICES PAGE === */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--solar-yellow);
    color: var(--dark-gray);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.feature-list i {
    color: var(--success-green);
    font-size: 18px;
}

.benefit-card {
    background: var(--neutral-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.benefit-card i {
    font-size: 32px;
    color: var(--energy-blue);
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.benefit-card p {
    font-size: 14px;
    color: #666;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 15px;
    color: var(--dark-gray);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #666;
}

/* === CONTACT PAGE === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-section,
.contact-info-section {
    background: var(--clean-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-info-card {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-gray);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.info-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.social-connect {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--energy-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clean-white);
    margin-right: 10px;
}

.social-link:hover {
    background: var(--solar-yellow);
    color: var(--dark-gray);
}

.map-section {
    padding: 60px 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--clean-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.faq-item h4 i {
    color: var(--energy-blue);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.status-select {
    padding: 6px 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    cursor: pointer;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--clean-white);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid,
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        width: 200px;
    }
    
    .admin-main {
        margin-left: 200px;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
}
