/* ============================================================
   GLOBAL
============================================================ */

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #222;
}

/* ============================================================
   HERO SECTION PREMIUM 2025
============================================================ */

.hero {
    position: relative;
    background: linear-gradient(135deg, #b80000 0%, #ff0000 40%, #8b0000 100%);
    padding: 110px 20px 150px;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 50%),
        radial-gradient(circle at bottom left, rgba(0,0,0,0.35), transparent 60%);
    opacity: 0.55;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 10;
}

.text-logo {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
}

/* ANIMACIONE */
.animate-logo {
    opacity: 0;
    transform: translateY(-25px) scale(0.9);
    animation: logoIntro 1.2s ease-out forwards;
}
@keyframes logoIntro {
    0%   { opacity: 0; transform: translateY(-25px) scale(0.9); }
    60%  { opacity: 1; transform: translateY(0) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-title {
    opacity: 0;
    transform: translateY(15px);
    animation: titleIntro 1s ease-out forwards;
    animation-delay: .4s;
}
@keyframes titleIntro {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-sub {
    opacity: 0;
    transform: translateY(10px);
    animation: subIntro 1s ease-out forwards;
    animation-delay: .7s;
}
@keyframes subIntro {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO ROW: NUMRI MAJTAS + BUTTONI DJATHAS
============================================================ */

.hero-stats-row {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-count {
    background: rgba(255,255,255,0.18);
    padding: 12px 25px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    text-align: left;
}

.count-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
}

.count-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-members-btn {
    background: #ffffff;
    color: #d10000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 3px solid #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 3px 14px rgba(255,255,255,0.3);
    transition: .2s;
}
.hero-members-btn:hover {
    background: #d10000;
    color: white;
    border-color: #d10000;
}

/* ============================================================
   CONTENT
============================================================ */

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

.content-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left: 6px solid #ff0000;
    margin-bottom: 40px;
}

.highlight {
    color: #d30000;
    font-size: 1.4rem;
    font-weight: bold;
}

/* ============================================================
   FORM
============================================================ */

.form-card {
    background: white;
    padding: 40px;
    border-radius: 22px;
    border: 2px solid #ff0000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 2rem;
    font-weight: bold;
    color: #d10000;
    text-align: center;
    margin-bottom: 25px;
}

.field-label {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.row.full {
    flex-direction: column;
}

input, select {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    border-radius: 14px;
    background: #fafafa;
    transition: .2s;
}

input:focus, select:focus {
    border-color: #ff0000;
    background: white;
    outline: none;
    box-shadow: 0 0 6px rgba(255,0,0,0.3);
}

.radio-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 8px;
}

.radio-wrap input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.radio-wrap input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #ff0000;
    border-radius: 50%;
}

/* Flag dropdown */
.ddl {
    padding-left: 54px !important;
    background-repeat: no-repeat !important;
    background-position: 16px center !important;
    background-size: 22px 15px !important;
}

/* Submit Button */
.btn {
    width: 100%;
    padding: 16px;
    background: #ff0000;
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
}
.btn:hover {
    background: #cc0000;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 600px) {
    .row { flex-direction: column; }
    .hero-stats-row { flex-direction: column; }
}
/* ================= PRIORITETET ================= */

.prioritetet-section {
    background: #fff;
    padding: 40px 25px;
    margin-bottom: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.prioritetet-title {
    text-align: center;
    font-size: 2rem;
    color: #d10000;
    font-weight: 800;
    margin-bottom: 25px;
}

.prioritetet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.p-item {
    background: #fafafa;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.25s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.p-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.p-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.p-item h3 {
    color: #d10000;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.p-item p {
    color: #444;
    font-size: 1rem;
    line-height: 1.55;
}

/* ================= PSE TË BASHKOHENI ================= */

.pse-section {
    margin-bottom: 40px;
}

.pse-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #d10000;
    margin-bottom: 25px;
}

.pse-grid {
    display: grid;
    gap: 20px;
}

.pse-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.pse-item h3 {
    color: #d10000;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.pse-item p {
    color: #444;
    line-height: 1.55;
}
/* HERO contact links */
.contact-bar a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
}

.contact-bar a:hover {
    text-decoration: underline;
    color: #ffecec !important;
}
