/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f2f2f2;
    background: #060606;
}

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

/* Header */
header {
    background: rgba(10, 10, 10, 0.96);
    color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

header h1 {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

nav ul li {
    display: inline-block;
}

nav a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

nav a:hover,
nav a:focus {
    color: #ff6b35;
}

/* Hero */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3)), url('horsiantal pci.png');
    background-color: #090909;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

#hero .container {
    max-width: 800px;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.82);
}

.btn {
    background: #ff6b35;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(255, 107, 53, 0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    margin-bottom: 2rem;
    color: #f8f8f8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.9rem;
}

section p {
    color: #d1d1d1;
}

#about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #222;
    margin-top: 1.8rem;
}

#about h3 {
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    color: #f8f8f8;
}

#about ul {
    padding-left: 1.2rem;
    color: #d1d1d1;
}

#about p + p {
    margin-top: 1rem;
}

#contact .container > p {
    margin-top: 1.5rem;
    text-align: center;
    color: #aaa;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service {
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid #1f1f1f;
    padding: 28px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service h3 {
    margin-bottom: 0.9rem;
    color: #fff;
}

.service p {
    margin-bottom: 1rem;
    color: #c8c8c8;
}

.service p:last-child {
    color: #ffb48a;
    font-weight: 700;
}

/* Testimonials */
.testimonial {
    margin: 20px 0;
    padding: 26px 24px;
    background: rgba(20, 20, 20, 0.95);
    border-left: 5px solid #ff6b35;
    color: #e5e5e5;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Contact */
#contact {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.contact-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.contact-box h2 {
    font-size: 2.4rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.05rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.contact-btn {
    font-size: 1rem;
    padding: 16px 36px;
}

/* Footer */
footer {
    background: #090909;
    color: #aaa;
    text-align: center;
    padding: 1.2rem 0;
    border-top: 1px solid #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    header h1 {
        font-size: 1.2rem;
    }
    nav ul {
        gap: 16px;
        justify-content: center;
    }
    #hero h2 {
        font-size: 2.2rem;
    }
    #hero p {
        font-size: 1rem;
    }
    section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 560px) {
    nav ul li {
        display: inline-block;
        margin: 0;
    }
    .service {
        padding: 22px;
    }
}
