/* ===================================================================
   EVENTPRO - Index Page Styles (index.css)
   =================================================================== */

/* ===== HERO (video background) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,15,15,0.3) 0%,
        rgba(15,15,15,0.1) 40%,
        rgba(15,15,15,0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    padding: 120px 0 100px;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-label::before { content: ''; width: 30px; height: 2px; background: var(--red); }

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
}
.hero-title .hl { color: var(--red); }

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-white-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 45px; justify-content: center; }

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.25);
    color: var(--white);
}

.btn-outline-w {
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-outline-w:hover { border-color: var(--red); color: var(--red); }

.hero-stats { display: flex; gap: 40px; justify-content: center; }
.hero-stat h3 { font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 2px; }
.hero-stat h3 span { color: var(--red); }
.hero-stat p { color: var(--text-white-muted); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; margin: 0; }

/* ===== ABOUT (LIGHT) ===== */
.about-img { position: relative; }
.about-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 3px; }

.about-badge {
    position: absolute;
    bottom: -20px; right: 25px;
    background: var(--red);
    color: var(--white);
    padding: 18px 22px;
    text-align: center;
    border-radius: 3px;
}
.about-badge h4 { font-size: 1.8rem; margin-bottom: 0; color: var(--white); }
.about-badge p { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; margin: 0; opacity: 0.9; }

.about-list { list-style: none; padding: 0; }
.about-list li {
    padding: 11px 0;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.92rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border: none; }
.about-list li i { color: var(--red); font-size: 0.75rem; width: 18px; }

/* ===== SERVICES (DARK - image cards) ===== */
.service-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    height: 100%;
    border-radius: 3px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--red);
    transition: width 0.4s;
}
.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.service-card:hover::after { width: 100%; }

.service-img {
    width: 100%; height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.service-card:hover .service-img { transform: scale(1.05); }

.service-body { padding: 22px 22px 26px; }
.service-card h4 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; color: var(--white); }
.service-card p { color: var(--text-white-muted); font-size: 0.87rem; line-height: 1.7; margin: 0; }

.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--red); font-size: 0.8rem; font-weight: 600;
    margin-top: 12px; transition: gap 0.3s;
}
.service-link:hover { gap: 10px; color: var(--red-light); }

/* ===== STATS (red) ===== */
.stats-bar { background: var(--red); padding: 50px 0; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2.8rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.stat-item p { color: rgba(255,255,255,0.85); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin: 0; }

/* ===== PORTFOLIO (LIGHT) ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 3px;
    cursor: pointer;
}
.portfolio-item.large { grid-column: span 2; grid-row: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(15,15,15,0.85));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 22px;
    opacity: 0; transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .tag {
    display: inline-block; background: var(--red); color: var(--white);
    padding: 3px 10px; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 6px; width: fit-content; border-radius: 2px;
}
.portfolio-overlay h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.portfolio-overlay p { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin: 0; }

/* ===== PROCESS (DARK) ===== */
.process-card { text-align: center; padding: 30px 20px; }
.process-num {
    width: 55px; height: 55px;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
    margin: 0 auto 15px;
    transition: all 0.3s;
}
.process-card:hover .process-num { background: var(--red); color: var(--white); }
.process-card h5 { font-size: 0.95rem; margin-bottom: 8px; color: var(--white); }
.process-card p { color: var(--text-white-muted); font-size: 0.85rem; line-height: 1.6; }

/* ===== TESTIMONIALS (LIGHT) ===== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 30px;
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\201C'; font-size: 4rem; color: var(--red); opacity: 0.15;
    position: absolute; top: 8px; left: 18px; line-height: 1; font-family: serif;
}
.testimonial-stars { color: var(--red); font-size: 0.75rem; margin-bottom: 12px; }
.testimonial-text { color: var(--text-body); font-style: italic; line-height: 1.8; font-size: 0.92rem; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-author h6 { font-size: 0.85rem; margin-bottom: 2px; color: var(--text-dark); }
.testimonial-author small { color: var(--text-light); font-size: 0.75rem; }

/* ===== CTA (DARK + image) ===== */
.cta-section {
    position: relative; padding: 90px 0;
    text-align: center; overflow: hidden;
}
.cta-section img.cta-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; filter: brightness(0.2);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 12px; }
.cta-content p { color: var(--text-white-muted); font-size: 1.05rem; margin-bottom: 28px; }

/* ===== CONTACT (LIGHT) ===== */
.contact-form {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 35px;
}
.contact-form .form-label {
    color: var(--text-dark); font-size: 0.78rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px;
}
.contact-form .form-control,
.contact-form .form-select {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 2px; color: var(--text-dark);
    padding: 11px 14px; font-size: 0.88rem;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(230,57,70,0.08);
}
.btn-submit {
    background: var(--red); color: var(--white);
    border: none; padding: 14px 0;
    font-weight: 600; font-size: 0.88rem;
    width: 100%; border-radius: 2px;
    transition: all 0.3s;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-item i {
    width: 40px; height: 40px;
    border: 1px solid var(--red); color: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; border-radius: 50%; flex-shrink: 0;
}
.contact-info-item h6 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: 2px; color: var(--text-dark); }
.contact-info-item p { color: var(--text-body); margin: 0; font-size: 0.88rem; }
.contact-info-item a { color: var(--text-body); transition: color 0.3s; }
.contact-info-item a:hover { color: var(--red); }
