/* ============================================================
   AskForPC - Stylesheet
   Color scheme based on logo (deep blue #003366 on white)
   Clean, professional, minimalist design
   ============================================================ */

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

:root {
    --color-primary: #003366;
    --color-primary-dark: #00264d;
    --color-primary-light: #335980;
    --color-accent: #0d6efd;
    --color-accent-hover: #0b5ed7;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #003366;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;
    --shadow-sm: 0 1px 2px rgba(0, 51, 102, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 51, 102, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 51, 102, 0.12);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }

ul, ol { margin-bottom: 1em; padding-left: 1.5em; }

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

.main-content {
    flex: 1 0 auto;
}

.section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
}

.section-alt {
    background: var(--color-bg-alt);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }

/* ============ HEADER & NAV ============ */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

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

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

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    background: rgba(0, 51, 102, 0.06);
}

.main-nav a.nav-track {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

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

.btn-outline:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
}

.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============ BADGES ============ */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(0, 51, 102, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(0, 51, 102, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-accent {
    background: rgba(13, 110, 253, 0.1);
    color: var(--color-accent);
    border-color: rgba(13, 110, 253, 0.2);
}

.badge-success { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.badge-warning { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.badge-info { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }
.badge-danger { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 80px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0, 51, 102, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 51, 102, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--color-primary);
    line-height: 1.1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ SECTION HEADING ============ */
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

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

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

/* ============ CARD ============ */
.card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ============ SERVICES GRID ============ */
.service-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.service-card .learn-more {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

/* ============ STATS ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 24px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============ TIMELINE ============ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-year {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.timeline-title {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.timeline-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 1rem;
}

.testimonial-message {
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.1);
    border: 1px solid rgba(0, 51, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.testimonial-role {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ============ CTA ============ */
.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

.cta-box h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-box .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.cta-box .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

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

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

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.form-label .required {
    color: var(--color-danger);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--color-text);
    transition: all 0.2s ease;
}

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

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-error {
    color: var(--color-danger);
    font-size: 0.85rem;
    margin-top: 4px;
}

.form-help {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003366' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

/* ============ ALERTS ============ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: 1px solid;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-color: #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-color: #93c5fd;
}

.alert-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* ============ ACCORDION (FAQ) ============ */
.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
}

.accordion-trigger {
    width: 100%;
    padding: 18px 20px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.2s ease;
}

.accordion-trigger:hover {
    background: var(--color-bg-alt);
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.accordion-item.active .accordion-trigger::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* ============ TRACKING PAGE ============ */
.track-box {
    max-width: 600px;
    margin: 0 auto;
}

.track-input-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.track-input-row .form-control {
    flex: 1;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.status-banner {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid;
    margin-bottom: 20px;
}

.status-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.status-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.status-banner h2 {
    margin: 0 0 4px 0;
}

.status-progress {
    margin-top: 16px;
}

.status-progress-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.status-progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 999px;
    transition: width 0.5s ease;
}

.status-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.status-history {
    position: relative;
    padding-left: 32px;
}

.status-history::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--color-border);
}

.status-history-item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
}

.status-history-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid white;
    box-shadow: 0 0 0 1px var(--color-primary);
}

.status-history-label {
    font-weight: 600;
    color: var(--color-text);
}

.status-history-date {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-left: 8px;
}

.status-history-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.detail-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.detail-row .label {
    color: var(--color-text-muted);
    min-width: 120px;
    font-size: 0.85rem;
}

.detail-row .value {
    color: var(--color-text);
    font-weight: 500;
}

/* ============ BLOG ============ */
.blog-article {
    max-width: 720px;
    margin: 0 auto;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 32px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-content h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.blog-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content strong {
    color: var(--color-primary);
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 4px;
}

/* ============ FILTER BUTTONS ============ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ============ PORTFOLIO ============ */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tech-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 51, 102, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(0, 51, 102, 0.15);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============ PROCESS STEPS ============ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.process-step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0, 51, 102, 0.05);
    line-height: 1;
}

.process-step-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 51, 102, 0.1);
    border: 1px solid rgba(0, 51, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.process-step h4 {
    margin-bottom: 8px;
    color: var(--color-primary);
    position: relative;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
    position: relative;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
    margin-top: 80px;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.footer-col h3 {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============ BACK LINK ============ */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

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

/* ============ ADMIN PANEL ============ */
.admin-header {
    background: var(--color-primary);
    color: white;
    padding: 16px 0;
}

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

.admin-header h1 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
}

.admin-nav ul {
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.admin-nav a {
    display: inline-block;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.admin-content {
    padding: 32px 0;
    background: var(--color-bg-alt);
    min-height: calc(100vh - 60px);
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.admin-table th {
    background: var(--color-bg-alt);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: var(--color-bg-alt);
}

.status-pill {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
}

.admin-login {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.admin-login h1 {
    text-align: center;
    margin-bottom: 24px;
}

/* ============ ROLE BADGES ============ */
.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.role-badge-super_admin {
    background: #ede9fe;
    color: #7c3aed;
    border-color: #c4b5fd;
}

.role-badge-admin {
    background: #dbeafe;
    color: #003366;
    border-color: #93c5fd;
}

.role-badge-staff {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
}

.admin-header .role-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    padding: 2px 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero p { font-size: 1rem; }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--color-border);
        padding: 16px 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 14px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .track-input-row {
        flex-direction: column;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .admin-header-inner {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .admin-nav ul {
        flex-wrap: wrap;
    }
    
    .admin-table {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .logo-tagline {
        display: none;
    }
}

/* ============ UTILITIES ============ */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-6 { margin-top: 24px !important; }
.mt-8 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-6 { margin-bottom: 24px !important; }
.mb-8 { margin-bottom: 32px !important; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-white { color: white; }
.hidden { display: none; }
