/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0c0f;
    color: #d1d1d1;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Stalker style: gritty, dark, with yellow/orange accents */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
    background: #f5a623;
    border-radius: 10px;
}

/* Background with subtle noise and vignette */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%),
                url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4xNSIgLz48L3N2Zz4=');
    background-size: cover, 200px;
    pointer-events: none;
    z-index: 0;
}

.wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Roboto Condensed', sans-serif;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    line-height: 1.1;
    color: #f5a623;
    text-shadow: 0 0 15px rgba(245, 166, 35, 0.7), 0 0 30px rgba(0,0,0,0.9);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}
h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #f5a623;
    box-shadow: 0 0 10px #f5a623;
}

.section-subhead {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ===== HEADER ===== */
header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(245, 166, 35, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo i {
    font-size: 2.5rem;
    color: #f5a623;
    filter: drop-shadow(0 0 8px #f5a623);
}
.logo span {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    font-family: 'Roboto Condensed', sans-serif;
}
.logo span small {
    font-size: 1rem;
    font-weight: 400;
    color: #f5a623;
    letter-spacing: 2px;
    margin-left: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 1rem;
    letter-spacing: 1.5px;
}
.nav-links a:hover {
    color: #f5a623;
    text-shadow: 0 0 8px #f5a623;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: #f5a623;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
    font-size: 1rem;
    border: 1px solid #f5a623;
}
.btn:hover {
    background: transparent;
    color: #f5a623;
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.8);
}
.btn-outline {
    background: transparent;
    border: 2px solid #f5a623;
    color: #f5a623;
    box-shadow: none;
}
.btn-outline:hover {
    background: #f5a623;
    color: #111;
    box-shadow: 0 0 30px #f5a623;
}

/* ===== HERO SECTION (used on index) ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0 100px;
    align-items: center;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 30px 0;
    color: #bbb;
    border-left: 4px solid #f5a623;
    padding-left: 20px;
}

.hero-image {
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.8), 0 0 0 2px rgba(245,166,35,0.3);
    filter: grayscale(30%);
}
.hero-image .placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #f5a62330;
    color: #f5a62380;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* ===== FEATURES GRID (used on features page) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(20, 20, 25, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
}
.feature-card:hover {
    border-color: #f5a623;
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(245, 166, 35, 0.2);
}
.feature-card i {
    font-size: 3.5rem;
    color: #f5a623;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}
.feature-card p {
    color: #aaa;
    font-size: 1rem;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    height: 220px;
    background: #222;
    border-radius: 8px;
    border: 1px solid #f5a62330;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    color: #f5a623;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.3s;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.gallery-item span {
    background: rgba(0,0,0,0.7);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #f5a623;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.gallery-item:hover {
    border-color: #f5a623;
    transform: scale(1.02);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}
.contact-info {
    background: rgba(20,20,25,0.9);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #f5a62330;
}
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}
.info-item i {
    font-size: 2rem;
    color: #f5a623;
    width: 40px;
}
.contact-form {
    background: rgba(20,20,25,0.9);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #f5a62330;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #f5a623;
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(145deg, #0f0f15, #050507);
    border: 1px solid #f5a62330;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    margin: 60px 0;
}
.cta h2 {
    font-size: 3rem;
}
.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 40px;
    color: #aaa;
}
.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}
.cta-form input {
    flex: 1;
    padding: 15px 20px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    outline: none;
}
.cta-form input:focus {
    border-color: #f5a623;
}
.cta-form button {
    padding: 15px 30px;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(245,166,35,0.2);
    padding: 40px 0;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #808080;
}
.social-links a {
    color: #aaa;
    margin-left: 25px;
    font-size: 1.5rem;
    transition: 0.3s;
}
.social-links a:hover {
    color: #f5a623;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        border-left: none;
        border-top: 4px solid #f5a623;
        padding-left: 0;
        padding-top: 20px;
    }
    h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    h2 {
        text-align: center;
        display: block;
    }
    .section-subhead {
        text-align: center;
    }
    header {
        flex-direction: column;
        gap: 20px;
    }
    .nav-links {
        justify-content: center;
    }
    .cta-form {
        flex-direction: column;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== BLOG PAGE ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}
.blog-card {
    background: rgba(20,20,25,0.9);
    border: 1px solid #f5a62330;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}
.blog-card:hover {
    border-color: #f5a623;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245,166,35,0.2);
}
.blog-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
}
.blog-card-content {
    padding: 25px;
}
.blog-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}
.blog-meta {
    color: #f5a623;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
}
.blog-meta i {
    margin-right: 5px;
}
.blog-card-content p {
    color: #aaa;
    margin-bottom: 20px;
}
.blog-card-content .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* ===== TEAM PAGE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}
.team-member {
    background: rgba(20,20,25,0.9);
    border: 1px solid #f5a62330;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}
.team-member:hover {
    border-color: #f5a623;
    transform: scale(1.02);
}
.team-member i {
    font-size: 4rem;
    color: #f5a623;
    margin-bottom: 20px;
}
.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}
.team-member .role {
    color: #f5a623;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.team-member p {
    color: #aaa;
    font-size: 0.95rem;
}

/* ===== MODAL GALLERY ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid #f5a623;
    border-radius: 5px;
}
.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f5a623;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
}
.modal-close:hover {
    color: #fff;
}