/* ===========================
   SHOP TECH SUPPORT STYLES
   Dark Theme with Blue/Purple Glow
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0d0d0d;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
    --secondary-blue: #1e40af;
    --secondary-purple: #6d28d9;
    --text-light: #e5e7eb;
    --text-lighter: #a3a3a3;
    --accent-glow: 0 0 8px rgba(37, 99, 235, 0.2);
    --accent-glow-purple: 0 0 8px rgba(124, 58, 237, 0.2);
    --transition: all 0.3s ease;
}

/* ===========================
   GLOBAL STYLES
   =========================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 70px;
    width: auto;
    filter: none;
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    filter: none;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
    text-shadow: none;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: var(--primary-black);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-banner-wrap {
    width: 100%;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    max-height: 55vh;
    object-fit: contain;
    display: block;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-bg) 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-lighter);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    padding: 3.5rem 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: none;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-card p {
    color: var(--text-lighter);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */

.portfolio {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--primary-black) 100%);
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(37, 99, 235, 0.15);
    aspect-ratio: 1;
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.8);
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.2) inset;
}

.portfolio-overlay p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.portfolio-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 15px;
    border: 2px dashed rgba(37, 99, 235, 0.3);
    text-align: center;
    margin-top: 3rem;
}

.construction-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.portfolio-coming-soon h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.portfolio-coming-soon p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.construction-note {
    color: var(--text-lighter);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===========================
   ACCESS PATHS SECTION
   =========================== */

.paths-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-bg) 100%);
}

.paths-container {
    max-width: 1200px;
    margin: 0 auto;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.path-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.88), rgba(26, 26, 26, 0.88));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: var(--transition);
}

.path-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
}

.path-card h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.path-card p {
    color: var(--text-lighter);
    font-size: 0.95rem;
}

.path-link {
    margin-top: auto;
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: var(--text-light);
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.path-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}


/* ===========================
   REQUEST SERVICE SECTION
   =========================== */

.request-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--primary-black) 100%);
}

.service-form {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* ===========================
   SUCCESS MESSAGE
   =========================== */

.success-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-content p {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.success-content a {
    color: var(--text-light);
    text-decoration: underline;
}

.success-content a:hover {
    color: var(--primary-blue);
}

/* ===========================
   STATS STRIP
   =========================== */

/* stats-strip removed */

/* ===========================
   HERO DUAL BUTTONS
   =========================== */

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2.2rem 1.5rem;
}

.cta-secondary {
    background: transparent;
    border-color: rgba(37, 99, 235, 0.5);
    color: var(--text-light);
}

.cta-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ===========================
   NAV HIGHLIGHT PILL
   =========================== */

.nav-link-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 0.4rem 1.1rem !important;
    border-radius: 20px;
    color: white !important;
    font-weight: 700;
}

.nav-link-highlight::after {
    display: none !important;
}

/* ===========================
   MOBILE NAV TOGGLE
   =========================== */

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

/* ===========================
   CUSTOMER PATH CARDS (paths section)
   =========================== */

.customer-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.customer-path-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(26, 26, 26, 0.92));
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 18px;
    padding: 2.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.customer-path-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.18);
}

.path-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

.path-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.customer-path-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

.customer-path-card p {
    color: var(--text-lighter);
    line-height: 1.7;
    flex: 1;
}

.path-btn {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.staff-paths {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.staff-label {
    color: var(--text-lighter);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.8rem;
}

.staff-grid {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.staff-link {
    color: var(--text-lighter);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 0.45rem 0.9rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.staff-link:hover {
    color: var(--text-light);
    border-color: rgba(37, 99, 235, 0.3);
}

/* ===========================
   CTA SECTION
   =========================== */

/* ===========================
   SUBPAGE SHARED STYLES
   (support.php, track.php)
   =========================== */

.subpage-shell {
    min-height: calc(100vh - 140px);
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-bg) 100%);
}

.subpage-container {
    max-width: 860px;
    margin: 0 auto;
}

.subpage-links {
    margin: 1rem 0 2rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.subpage-links a {
    color: var(--text-light);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.subpage-links a:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.status-card {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(10, 10, 10, 0.85);
}

.status-success-msg {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.status-error {
    border-color: rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

.ticket-meta,
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.ticket-meta div,
.ticket-grid div {
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    background: rgba(15, 15, 15, 0.6);
}

.ticket-meta span,
.ticket-grid span {
    display: block;
    color: var(--text-lighter);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.ticket-meta strong,
.ticket-grid strong {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
}

.description-block {
    margin-top: 0.9rem;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    background: rgba(15, 15, 15, 0.7);
    white-space: pre-wrap;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

.tracking-heading {
    margin-top: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   FOOTER  (full redesign)
   =========================== */

.footer {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--primary-black) 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 44px;
    width: auto;
}

.footer-logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about {
    color: var(--text-lighter);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col ul li a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.footer-col-extra {
    margin-top: 1.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 2rem;
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.82rem;
}

/* ===========================
   TRUST BADGES SECTION
   =========================== */

.trust-badges {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    animation: slideUpFade 0.6s ease both;
}

.trust-badge:nth-child(1) { animation-delay: 0s; }
.trust-badge:nth-child(2) { animation-delay: 0.1s; }
.trust-badge:nth-child(3) { animation-delay: 0.2s; }
.trust-badge:nth-child(4) { animation-delay: 0.3s; }

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.trust-badge h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-badge p {
    color: var(--text-lighter);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */

.how-it-works {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--primary-black) 100%);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.timeline-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.timeline-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-lighter);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin: 2rem auto 0;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* ===========================
   RESOURCES SECTION
   =========================== */

.resources {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-bg) 100%);
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.resource-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.resource-card:hover .resource-icon {
    transform: scale(1.2) rotate(5deg);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.resource-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.resource-card p {
    color: var(--text-lighter);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.resource-card:hover .resource-link {
    transform: translateX(4px);
}

/* ===========================
   BLOG POSTS
   =========================== */

.blog-post {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--primary-black) 100%);
    display: none;
}

.blog-post:target {
    display: block;
    animation: slideUpFade 0.6s ease;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-back {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.blog-back:hover {
    transform: translateX(-4px);
}

.blog-article {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.blog-article h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    flex-wrap: wrap;
}

.blog-date {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-author {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.blog-content {
    color: var(--text-light);
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.blog-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-content ul {
    margin-bottom: 1.5rem;
}

.blog-content ul li {
    margin-bottom: 0.8rem;
}

.blog-content strong {
    color: var(--text-light);
    font-weight: 700;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0 3rem;
}

.contact-item {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6), rgba(26, 26, 26, 0.6));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-lighter);
    font-size: 0.95rem;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--text-light);
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.cta-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ===========================
   CHAT WIDGET
   =========================== */

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
    font-weight: 700;
    padding: 0;
    position: relative;
}

.chat-status {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid var(--dark-bg);
    animation: pulse 2s ease-in-out infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.chat-toggle.active {
    transform: rotate(180deg);
}

.chat-label {
    font-size: 0.75rem;
    display: none;
}

.chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    overflow: hidden;
}

.chat-box.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-header h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-status {
    font-size: 0.85rem;
    color: #22c55e;
    margin-left: auto;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-content {
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 0.8rem;
}

.chat-message.bot p {
    background: rgba(37, 99, 235, 0.15);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-options {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chat-option-btn {
    padding: 0.8rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-option-btn:hover {
    background: rgba(37, 99, 235, 0.25);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.chat-discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-color: #5865F2;
    color: white;
    font-weight: 700;
}

.chat-discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3c3fa3);
    border-color: #4752C4;
    color: white;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

/* ===========================
   DISCORD BUTTON FOOTER
   =========================== */

.discord-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752C4, #3c3fa3);
}

/* ===========================
   ANIMATIONS & TRANSITIONS
   =========================== */

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* FAQ Enhancements */
.faq-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-bg) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-chevron {
    color: var(--primary-blue);
    transition: var(--transition);
    font-size: 0.8rem;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(37, 99, 235, 0.05);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-lighter);
    line-height: 1.7;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        border-bottom: 1px solid rgba(37, 99, 235, 0.15);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-link {
        display: block;
        padding: 0.85rem 2rem;
    }

    .nav-link-highlight {
        margin: 0.5rem 1.5rem;
        display: inline-block;
        border-radius: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .hero-title {
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-form {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero::before,
    .hero::after {
        width: 250px;
        height: 250px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .customer-paths {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        flex-direction: column;
    }

    .contact-cta a {
        width: 100%;
        margin-left: 0 !important;
    }
    
    /* MOBILE TOUCH OPTIMIZATION */
    button, a.btn-login, a.cta-button, .nav-btn, .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    input, textarea, select {
        font-size: 16px;
        min-height: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* BETTER TABLE SCROLLING ON MOBILE */
    .table-container {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    /* OPTIMIZE ANIMATIONS FOR MOBILE */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* IMPROVE TEXT RENDERING ON MOBILE */
    html {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .contact-cta a {
        width: 100%;
    }

    .chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-box {
        width: 280px;
    }
}

@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .services {
        padding: 3rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .request-section {
        padding: 3rem 1.5rem;
    }

    .service-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio {
        padding: 3rem 1.5rem;
    }

    .logo-img {
        height: 55px;
    }

    .hero-logo {
        height: 180px;
    }

    .service-details {
        padding: 3rem 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .service-hero {
        min-height: 40vh;
        margin-top: 50px;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-badge {
        padding: 1.5rem 1rem;
    }

    .blog-post {
        padding: 3rem 1.5rem;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .blog-article h2 {
        font-size: 1.6rem;
    }

    .blog-content {
        font-size: 0.95rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-number {
        font-size: 2.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .contact-cta a {
        width: 100%;
        margin-left: 0 !important;
    }
    
    main {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .blog-article h2 {
        font-size: 1.8rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chat-box {
        width: 260px;
    }
}

/* ===========================
   STATUS BADGES (feature 6)
   =========================== */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-submitted    { background: rgba(37,99,235,0.18);  color: #60a5fa; border: 1px solid rgba(37,99,235,0.4); }
.badge-in_progress  { background: rgba(234,179,8,0.15);  color: #fbbf24; border: 1px solid rgba(234,179,8,0.4); }
.badge-waiting_parts{ background: rgba(124,58,237,0.18); color: #a78bfa; border: 1px solid rgba(124,58,237,0.4); }
.badge-completed    { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.4); }
.badge-closed       { background: rgba(107,114,128,0.18);color: #9ca3af; border: 1px solid rgba(107,114,128,0.4); }
.badge-reopened     { background: rgba(239,68,68,0.15);  color: #f87171; border: 1px solid rgba(239,68,68,0.4); }

/* ===========================
   TOAST NOTIFICATIONS (feature 7)
   =========================== */
#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}
.toast {
    padding: 1rem 1.4rem;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 600;
    color: white;
    min-width: 240px;
    max-width: 360px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    animation: toastIn 0.3s ease-out forwards;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    pointer-events: auto;
}
.toast.hiding { animation: toastOut 0.3s ease-in forwards; }
.toast-success { background: linear-gradient(135deg,#14532d,#166534); border:1px solid #4ade80; }
.toast-error   { background: linear-gradient(135deg,#7f1d1d,#991b1b); border:1px solid #f87171; }
.toast-info    { background: linear-gradient(135deg,#1e3a5f,#1e40af); border:1px solid #60a5fa; }
@keyframes toastIn  { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(40px)} }

/* ===========================
   COPY BUTTON (feature 9)
   =========================== */
.copy-btn {
    background: none;
    border: 1px solid rgba(37,99,235,0.4);
    color: var(--text-lighter);
    border-radius: 6px;
    padding: 0.18rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    margin-left: 0.5rem;
    vertical-align: middle;
    line-height: 1;
}
.copy-btn:hover { border-color: var(--primary-blue); color: var(--primary-blue); }

/* ===========================
   CHARACTER COUNTER (feature 10)
   =========================== */
.char-counter {
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-lighter);
    margin-top: 0.35rem;
    transition: color 0.2s;
}
.char-counter.near-limit { color: #fbbf24; }
.char-counter.at-limit   { color: #f87171; }

/* ===========================
   WHAT HAPPENS NEXT (feature 13)
   =========================== */
.next-steps {
    margin-top: 1.8rem;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg,rgba(37,99,235,0.06),rgba(124,58,237,0.06));
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 12px;
}
.next-steps h4 {
    color: var(--text-lighter);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.steps-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 58%;
    width: 84%;
    height: 2px;
    background: linear-gradient(90deg,var(--primary-blue),var(--primary-purple));
    opacity: 0.35;
}
.step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary-blue),var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 auto 0.55rem;
    color: white;
    box-shadow: 0 0 10px rgba(37,99,235,0.3);
}
.step-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}
.step-item p {
    font-size: 0.75rem;
    color: var(--text-lighter);
    line-height: 1.4;
    padding: 0 0.3rem;
}

/* ===========================
   FAQ SECTION (feature 11)
   =========================== */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg,var(--dark-bg) 0%,var(--primary-black) 100%);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-list { margin-top: 2.5rem; }
.faq-item {
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 10px;
    margin-bottom: 0.9rem;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(37,99,235,0.45); }
.faq-question {
    width: 100%;
    background: linear-gradient(135deg,rgba(10,10,10,0.92),rgba(26,26,26,0.92));
    border: none;
    color: var(--text-light);
    padding: 1.15rem 1.5rem;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
    font-family: inherit;
}
.faq-question:hover { color: var(--primary-blue); }
.faq-chevron {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: var(--primary-blue);
    flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    background: rgba(10,10,10,0.55);
    color: var(--text-lighter);
    font-size: 0.93rem;
    line-height: 1.75;
    padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
    max-height: 260px;
    padding: 1rem 1.5rem 1.3rem;
}
@media (max-width: 768px) {
    .steps-flow { flex-direction: column; gap: 1rem; }
    .step-item:not(:last-child)::after { display: none; }
    .customer-paths { grid-template-columns: 1fr; }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.glow-text {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.glow-box {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* ===========================
   SERVICE PAGES
   =========================== */

.service-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.service-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 30%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.service-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: 10%;
}

.service-details {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--primary-black) 100%);
}

.service-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-features,
.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li,
.service-benefits li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '→ ';
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-benefits li::before {
    content: '✓ ';
    color: var(--primary-purple);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-process {
    list-style: none;
    margin-bottom: 2rem;
    counter-reset: step-counter;
}

.service-process li {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
    counter-increment: step-counter;
}

.service-process li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-weight: bold;
    font-size: 0.9rem;
}

.service-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.service-cta .cta-button {
    display: inline-block;
}

/* ===========================
   UI POLISH — SCROLL PROGRESS BAR
   =========================== */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    z-index: 9999;
    transition: width 0.05s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(37,99,235,0.5);
}

/* ===========================
   UI POLISH — BACK TO TOP BUTTON
   =========================== */

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
    pointer-events: none;
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

#back-to-top:hover {
    box-shadow: 0 6px 24px rgba(37,99,235,0.5);
    transform: translateY(-3px);
}

/* ===========================
   UI POLISH — SCROLL REVEAL
   =========================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===========================
   UI POLISH — NAV SCROLL EFFECT
   =========================== */

.navbar.scrolled {
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ===========================
   UI POLISH — HERO AMBIENT GLOW
   =========================== */

.hero {
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.35), transparent);
    pointer-events: none;
}

/* ===========================
   UI POLISH — SERVICE CARD GLOW PULSE
   =========================== */

@keyframes borderGlow {
    0%, 100% { border-color: rgba(37,99,235,0.15); }
    50%       { border-color: rgba(37,99,235,0.35); }
}

/* ===========================
   UI POLISH — IMAGE LIGHTBOX (portfolio)
   =========================== */

.portfolio-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.portfolio-lightbox.active {
    display: flex;
}

.portfolio-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(37,99,235,0.25);
    animation: lbIn 0.25s ease;
}

@keyframes lbIn {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}

.portfolio-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.75rem;
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.4);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.portfolio-lightbox-close:hover {
    background: rgba(37,99,235,0.5);
}

/* ===========================
   UI POLISH — STATS BAR (index hero bottom)
   =========================== */

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(10,10,10,0.7);
    border-top: 1px solid rgba(37,99,235,0.12);
    border-bottom: 1px solid rgba(37,99,235,0.12);
    padding: 1.2rem 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    .stat-item { padding: 0.5rem 1.2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .stat-item:last-child { border-bottom: none; }
    .stats-bar { flex-direction: column; gap: 0; padding: 0.5rem 1rem; }
}

