/* ═══════════════════════════════════════════════════════════════
   JMTechNI Website Styles
   ═══════════════════════════════════════════════════════════════ */

:root {
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --bg-dark: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #e2e8f0;
    --text-secondary: #b0bec5;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

.text-accent { color: var(--accent) !important; }
.bg-accent { background-color: var(--accent) !important; }
.border-accent { border-color: var(--accent) !important; }
.text-muted { color: var(--text-secondary) !important; }

/* Buttons */
.btn-accent {
    background: var(--accent);
    color: #ffffff;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

/* Navbar */
#mainNav {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    transition: all 0.3s;
}
#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
#mainNav .navbar-logo {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#mainNav.scrolled .navbar-logo {
    opacity: 1;
    transform: translateY(0);
}
.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent) !important;
}
.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #111827 50%, #0d1a2e 100%);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37,99,235,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59,130,246,0.05) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; }
.hero-logo-full {
    width: 90%;
    max-width: 700px;
    height: auto;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Hero Scroll Indicator */
.scroll-indicator {
    color: rgba(255,255,255,0.3);
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Job Lookup */
.job-lookup-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
}

/* Sections */
.section-padding { padding: 5rem 0; }
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}
.bg-dark-alt { background-color: #0d1321; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #111827, #0d1a2e);
    padding: 8rem 0 4rem;
    text-align: center;
}

/* Service Cards */
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    border-color: rgba(37,99,235,0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin: 0 auto 1.5rem;
}

/* Device Cards */
.device-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s;
}
.device-card:hover {
    border-color: rgba(37,99,235,0.3);
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37,99,235,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
}
.service-list {
    list-style: none;
    padding: 0;
}
.service-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* About */
.about-image-placeholder {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}
.about-list {
    list-style: none;
    padding: 0;
}
.about-list li {
    padding: 0.5rem 0;
}

/* Contact */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37,99,235,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37,99,235,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.expect-list li {
    padding: 0.5rem 0;
}

/* CTA */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(59,130,246,0.08));
    border-top: 1px solid rgba(37,99,235,0.15);
    border-bottom: 1px solid rgba(37,99,235,0.15);
}

/* Footer */
.site-footer {
    background: #080b12;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.site-footer a:hover { color: var(--accent); }

/* Form Controls Dark */
.form-control, .form-select {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
}
.form-control:focus, .form-select:focus {
    background-color: rgba(255,255,255,0.08);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(37,99,235,0.25);
}
.form-select option {
    background-color: #1a2332;
    color: var(--text-primary);
}
.form-control::placeholder { color: var(--text-secondary); }
.form-label { color: var(--text-secondary); font-weight: 500; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-logo-full { width: 95%; max-width: 500px; }
    .hero-section { padding-top: 80px; }
    .section-padding { padding: 3rem 0; }
    .hero-buttons .btn { margin-bottom: 0.5rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.whatsapp-float:active {
    transform: scale(0.95);
}