﻿:root {
    --primary: #2563EB;
    --text: #111827;
    --muted: #6B7280;
    --border: #E5E7EB;
    --bg: #fff;
}
/* PAGE */
.page {
    max-width: 1150px;
    margin: auto;
    padding: 25px 16px 70px;
    font-family: system-ui;
    color: var(--text);
}
/* ================= HERO ================= */
.hero {
    position: relative;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    margin-bottom: 18px;
}
    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }
    .hero:hover img {
        transform: scale(1.05);
    }
    /* DARK OVERLAY */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75));
    }
/* HERO TEXT */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: #fff;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    margin-bottom: 10px;
}
.hero-title {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
}
.hero-sub {
    margin-top: 8px;
    font-size: 14px;
    opacity: .9;
}
/* ================= INFO BAR ================= */
.info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}
.agency {
    display: flex;
    align-items: center;
    gap: 10px;
}
    .agency img {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        object-fit: cover;
        border: 1px solid var(--border);
    }
.agency-name {
    font-weight: 800;
}
.muted {
    font-size: 13px;
    color: var(--muted);
}
/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: .25s;
    text-decoration: none;
    color: var(--text);
}
    .btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }
.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}
    .btn-primary:hover {
        opacity: .9;
        color: #fff;
    }
/* ================= SECTIONS ================= */
.section {
    margin-top: 40px;
}
    .section h2 {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 12px;
    }
    .section p {
        color: var(--muted);
        line-height: 1.9;
        font-size: 15px;
    }
/* ================= GALLERY ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 16px;
}
.card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: .25s ease;
    position: relative;
}
    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }
    .card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        transition: .4s;
    }
    .card:hover img {
        transform: scale(1.05);
    }
.card-body {
    padding: 12px;
}
.card-title {
    font-weight: 800;
    font-size: 14px;
}
.card-sub {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
/* ICON STYLE */
i {
    color: var(--primary);
}
/* VIDEO */
iframe {
    width: 100%;
    height: 430px;
    border-radius: 14px;
    border: none;
}
/* ACTIONS */
.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
