/* --- RESET & VARIABLES --- */
:root {
    --primary-color: #FFD700;
    --primary-hover: #e6c200;
    --bg-dark: #0f0f0f;
    --bg-darker: #080808;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-grey: #cccccc;
    --font-main: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.highlight { color: var(--primary-color); }
.bg-darker { background-color: var(--bg-darker); }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--text-grey); margin-bottom: 50px; font-size: 1.1rem; }

/* --- NAVIGATION --- */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid #222;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.btn-small {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-small:hover { background: var(--primary-color); color: #000; }

/* --- HERO SECTION --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0f0f0f 100%);
    padding: 100px 20px;
}
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; min-height: 2.4em; }

/* Typing Effect */
.type-text::after { content: '|'; color: var(--primary-color); animation: blink 0.7s infinite; }
.type-text.typing-done::after { display: none; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Fade In */
.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.subheading { color: var(--text-grey); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px auto; }

.btn-main {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn-main:hover { background-color: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3); }

/* --- SCREENSHOTS & LIGHTBOX --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}
.testimonial-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }

.image-wrapper {
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: 0.3s; }
.testimonial-card:hover .image-wrapper img { opacity: 1; transform: scale(1.03); }

/* Zoom Icon overlay */
.zoom-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 50%;
}
.testimonial-card:hover .zoom-icon { opacity: 1; }

.testimonial-text { padding: 20px; text-align: center; }
.testimonial-text h3 { color: var(--primary-color); margin-bottom: 5px; font-size: 1.2rem; }
.testimonial-text p { font-size: 0.9rem; color: #ddd; }

/* --- LIGHTBOX STYLES --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-btn:hover { color: var(--primary-color); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- REVIEWS WITH PHOTOS --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.review-header h4 { font-size: 1.1rem; color: #fff; }
.stars { color: var(--primary-color); font-size: 0.8rem; margin-top: 2px; }

.review-body { font-size: 0.95rem; font-style: italic; color: #e0e0e0; line-height: 1.5; }

/* --- CTA SECTION --- */
.contact-wrapper { max-width: 600px; text-align: center; }

.btn-telegram-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #0088cc;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}
.btn-telegram-large:hover { background-color: #0077b5; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 136, 204, 0.5); }
.bounce-hover:hover i { animation: bounce 0.5s ease infinite alternate; }
@keyframes bounce { 0% { transform: translateY(0); } 100% { transform: translateY(-3px); } }

/* --- FOOTER --- */
footer { padding: 30px 0; text-align: center; background: #080808; border-top: 1px solid #222; color: #666; font-size: 0.9rem; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; min-height: auto; }
    .section-title { font-size: 2rem; }
    .image-wrapper { height: auto; max-height: 450px; }
    .btn-telegram-large { font-size: 1.1rem; padding: 15px; }
}