* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main:     #111111;
    --bg-alt:      #1c1c1e;
    --bg-card:     #222222;
    --accent:      #e05c1a;
    --accent2:     #f07a3a;
    --sky:         #38bdf8;
    --text:        #c0c0c0;
    --text-bright: #f1f5f9;
    --border:      #2c2c2e;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--bg-main);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: none;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(224, 92, 26, 0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 2px;
}

.logo-text span { color: var(--accent); }

nav ul {
    display: flex;
    align-items: center;
}

nav ul li { margin-left: 32px; }

nav ul li a {
    color: #a0a0a0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover { color: var(--accent2); }

.btn-nav {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
    border: 1px solid var(--accent);
}

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

.hero-slider {
    position: relative;
    height: 88vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active { opacity: 1; }

.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.93) 0%, rgba(17,17,17,0.70) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 820px;
    padding: 0 20px;
}

.slide-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.15;
    color: var(--text-bright);
}

.slide-content h1 em {
    color: var(--accent2);
    font-style: normal;
}

.slide-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #c0c0c0;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 15px 34px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent);
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-bright);
    padding: 15px 34px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255,255,255,0.3);
    margin-left: 14px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(224, 92, 26, 0.15);
    border: 1px solid rgba(224, 92, 26, 0.4);
    color: #fff;
    font-size: 1.4rem;
    padding: 14px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: all 0.3s;
}

.prev-btn:hover, .next-btn:hover { background: var(--accent); }
.prev-btn { left: 24px; }
.next-btn { right: 24px; }

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot-btn.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.stats-bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    padding: 28px 0;
}

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

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border);
    padding: 0 20px;
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent2);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.services {
    padding: 100px 0;
    background: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.2;
}

.section-title span { color: var(--accent); }

.section-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 20px 40px rgba(224, 92, 26, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    display: none;
    position: absolute;
    top: 14px; right: 18px;
    line-height: 1;
}

.icon-box {
    width: 52px;
    height: 52px;
    background: rgba(224, 92, 26, 0.1);
    border: 1px solid rgba(224, 92, 26, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--accent2);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    color: #a0a0a0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.about {
    padding: 100px 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

.about-punch {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background-image: url('logo_final.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-label {
    display: block;
    text-align: center;
    width: 100%;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-title span { color: var(--accent); }

.about-text p {
    color: #a0a0a0;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p strong { color: var(--text-bright); }
.about-text em { color: var(--accent2); }

.about-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 92, 26, 0.2);
    padding: 22px 24px;
    border-radius: 4px;
}

.about-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.about-card p {
    color: #a0a0a0;
    font-size: 1.25rem;
    line-height: 1.7;
}

footer {
    background: var(--bg-alt);
    border-top: none;
    padding: 70px 0 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
    color: #a0a0a0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.footer-cta {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-sub {
    color: #c0c0c0;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-bright);
    padding: 12px 22px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--accent);
    background: rgba(224, 92, 26, 0.08);
}

.contact-item i {
    color: var(--accent2);
    font-size: 1.1rem;
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #444;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
    .slide-content h1 { font-size: 2rem; }
    header .container { flex-direction: column; gap: 16px; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    nav ul li { margin: 8px 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: column; align-items: center; }
    .prev-btn, .next-btn { display: none; }
    .btn-outline { margin-left: 0; margin-top: 12px; display: block; }
}
